diff options
| author | Graydon Hoare <[email protected]> | 2010-07-02 15:11:44 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-02 15:11:44 -0700 |
| commit | b1d3e9697ada3e745eae0f18a586f51eb9d19ff5 (patch) | |
| tree | 3341fc2c3caf6fea48da813920bab372b8cbb5dd /src | |
| parent | Walk (mut/constr stripped) TY_iso edges when boxed. Fault on non-boxed edges;... (diff) | |
| download | rust-b1d3e9697ada3e745eae0f18a586f51eb9d19ff5.tar.xz rust-b1d3e9697ada3e745eae0f18a586f51eb9d19ff5.zip | |
Return LLVM to at least being able to run hello world.
Diffstat (limited to 'src')
| -rw-r--r-- | src/boot/llvm/lltrans.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/llvm/lltrans.ml b/src/boot/llvm/lltrans.ml index ed64485e..62383ff1 100644 --- a/src/boot/llvm/lltrans.ml +++ b/src/boot/llvm/lltrans.ml @@ -821,7 +821,7 @@ let trans_crate | Ast.STMT_log a -> begin - match Semant.atom_type sem_cx a with + match Semant.simplified_ty (Semant.atom_type sem_cx a) with (* NB: If you extend this, be sure to update the * typechecking code in type.ml as well. *) Ast.TY_str -> trans_log_str a |