aboutsummaryrefslogtreecommitdiff
path: root/src/comp/driver/rustc.rs
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/driver/rustc.rs
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/driver/rustc.rs')
-rw-r--r--src/comp/driver/rustc.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs
index c59d5b56..e3eb10cf 100644
--- a/src/comp/driver/rustc.rs
+++ b/src/comp/driver/rustc.rs
@@ -1,8 +1,8 @@
// -*- rust -*-
-import fe.parser;
-import fe.token;
-import me.trans;
+import front.parser;
+import front.token;
+import middle.trans;
fn main(vec[str] args) {
@@ -16,7 +16,6 @@ fn main(vec[str] args) {
for (str filename in args) {
if (i > 0) {
auto p = parser.new_parser(sess, filename);
- log "opened file: " + filename;
auto crate = parser.parse_crate(p);
trans.trans_crate(sess, crate);
}