aboutsummaryrefslogtreecommitdiff
path: root/src/comp/driver
diff options
context:
space:
mode:
authorDave Herman <[email protected]>2010-10-21 07:36:13 -0700
committerDave Herman <[email protected]>2010-10-21 07:36:13 -0700
commitda8b6795c72b7b6e307e51bbb41b1b04be8a8768 (patch)
tree8edbab055224907e064b8d520cf1560840f6d56a /src/comp/driver
parentsimpler computation of uint_bits(), plus whitespace police (diff)
downloadrust-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')
-rw-r--r--src/comp/driver/rustc.rs4
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.";