diff options
| author | Dave Herman <[email protected]> | 2010-10-21 07:36:13 -0700 |
|---|---|---|
| committer | Dave Herman <[email protected]> | 2010-10-21 07:36:13 -0700 |
| commit | da8b6795c72b7b6e307e51bbb41b1b04be8a8768 (patch) | |
| tree | 8edbab055224907e064b8d520cf1560840f6d56a /src/comp/driver/rustc.rs | |
| parent | simpler computation of uint_bits(), plus whitespace police (diff) | |
| download | rust-da8b6795c72b7b6e307e51bbb41b1b04be8a8768.tar.xz rust-da8b6795c72b7b6e307e51bbb41b1b04be8a8768.zip | |
tests and bugfixes: fns take aliases, fixed binary arithmetic in create, eliminated wasted bit per uint
Diffstat (limited to 'src/comp/driver/rustc.rs')
| -rw-r--r-- | src/comp/driver/rustc.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs index 69030f3c..147d5dff 100644 --- a/src/comp/driver/rustc.rs +++ b/src/comp/driver/rustc.rs @@ -5,8 +5,12 @@ import front.token; import middle.trans; import middle.resolve; +import util.bits; + io fn main(vec[str] args) { + bits.test(); + log "This is the rust 'self-hosted' compiler."; log "The one written in rust."; log "It does nothing yet, it's a placeholder."; |