diff options
| author | Rafael Ávila de Espíndola <[email protected]> | 2011-03-08 15:32:42 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-08 13:08:31 -0800 |
| commit | 55c80e763bfd850682b3217fcfc5cdb516eafae0 (patch) | |
| tree | 195be92a5e5de795986703c968e534262f61b37c /src/comp/glue.rc | |
| parent | rustc: Pass explicit type substitutions to later passes (diff) | |
| download | rust-55c80e763bfd850682b3217fcfc5cdb516eafae0.tar.xz rust-55c80e763bfd850682b3217fcfc5cdb516eafae0.zip | |
Move the glue asm code to a .o file. This reduces how much asm we print
in each "translation unit".
Diffstat (limited to 'src/comp/glue.rc')
| -rw-r--r-- | src/comp/glue.rc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/comp/glue.rc b/src/comp/glue.rc new file mode 100644 index 00000000..1048341a --- /dev/null +++ b/src/comp/glue.rc @@ -0,0 +1,37 @@ +// -*- rust -*- + +use std; + +mod front { + mod ast; +} + +mod middle { + mod ty; +} + +mod driver { + mod session; +} + +mod glue { + mod glue; +} + +mod back { + mod abi; + mod x86; +} + +mod util { + mod common; +} + + +// Local Variables: +// fill-column: 78; +// indent-tabs-mode: nil +// c-basic-offset: 4 +// buffer-file-coding-system: utf-8-unix +// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// End: |