diff options
| author | Graydon Hoare <[email protected]> | 2010-11-22 17:41:26 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-22 17:41:32 -0800 |
| commit | e05d7c3ac1e72edff337719fe58da69e959c4cf4 (patch) | |
| tree | b040d23dac019f8caf1157b385e4b6f915696815 /src/comp/front/ast.rs | |
| parent | rustc: "Expected" and "actual" were swapped. Also un-XFAIL compile-fail/arg-c... (diff) | |
| download | rust-e05d7c3ac1e72edff337719fe58da69e959c4cf4.tar.xz rust-e05d7c3ac1e72edff337719fe58da69e959c4cf4.zip | |
Support mach types in rustc, enable 5 more tests.
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 3a67d2f2..ddd02a03 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -4,6 +4,7 @@ import std.option; import middle.typeck; import util.common.span; import util.common.spanned; +import util.common.ty_mach; type ident = str; @@ -116,6 +117,7 @@ tag lit_ { lit_char(char); lit_int(int); lit_uint(uint); + lit_mach_int(ty_mach, int); lit_nil; lit_bool(bool); } |