aboutsummaryrefslogtreecommitdiff
path: root/src/comp/rustc.rc
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-09-23 15:46:31 -0700
committerGraydon Hoare <[email protected]>2010-09-23 15:46:31 -0700
commit46e46d0b49de8e245d091f7062dfc28ab71e869e (patch)
tree5ca0d7ab10eb2a89b9c2a299ff3490eac912bf5d /src/comp/rustc.rc
parentMore fleshing-out on rustc.me.trans. Emitting modules and fns corresponding t... (diff)
downloadrust-46e46d0b49de8e245d091f7062dfc28ab71e869e.tar.xz
rust-46e46d0b49de8e245d091f7062dfc28ab71e869e.zip
Translate a bunch of the material (lltrans, llasm, abi) from rustboot to rustc, and move files around.
Diffstat (limited to 'src/comp/rustc.rc')
-rw-r--r--src/comp/rustc.rc11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc
index c4e7c7e6..cf2c25ae 100644
--- a/src/comp/rustc.rc
+++ b/src/comp/rustc.rc
@@ -3,17 +3,22 @@
use std;
-mod fe {
+mod front {
mod ast;
mod lexer;
mod parser;
mod token;
}
-mod me {
+mod middle {
mod trans;
}
+mod back {
+ mod abi;
+ mod x86;
+}
+
mod driver {
mod rustc;
mod session;
@@ -24,7 +29,7 @@ mod util {
}
auth driver.rustc.main = state;
-auth me.trans = unsafe;
+auth middle.trans = unsafe;
mod lib {