diff options
Diffstat (limited to 'src/comp/rustc.rc')
| -rw-r--r-- | src/comp/rustc.rc | 11 |
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 { |