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/rustc.rc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/comp/rustc.rc') 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 { -- cgit v1.2.3