diff options
| author | Graydon Hoare <[email protected]> | 2010-09-22 17:05:38 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-09-22 17:05:38 -0700 |
| commit | 04a55df54bb389abf95c0639bd6246f06cd6c38f (patch) | |
| tree | 1e8b8630fbf875195ec135a19f0aa87ecc104933 /src/comp/driver | |
| parent | Add 'items' iter to hashmap. (diff) | |
| download | rust-04a55df54bb389abf95c0639bd6246f06cd6c38f.tar.xz rust-04a55df54bb389abf95c0639bd6246f06cd6c38f.zip | |
Flesh out rustc.me.trans to construct functions, basic blocks and builders off the AST.
Diffstat (limited to 'src/comp/driver')
| -rw-r--r-- | src/comp/driver/rustc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs index 758e9145..c59d5b56 100644 --- a/src/comp/driver/rustc.rs +++ b/src/comp/driver/rustc.rs @@ -18,7 +18,7 @@ fn main(vec[str] args) { auto p = parser.new_parser(sess, filename); log "opened file: " + filename; auto crate = parser.parse_crate(p); - trans.translate_crate(sess, crate); + trans.trans_crate(sess, crate); } i += 1; } |