From 46e46d0b49de8e245d091f7062dfc28ab71e869e Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Thu, 23 Sep 2010 15:46:31 -0700 Subject: Translate a bunch of the material (lltrans, llasm, abi) from rustboot to rustc, and move files around. --- src/comp/driver/rustc.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/comp/driver') 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); } -- cgit v1.2.3