diff options
| author | Graydon Hoare <[email protected]> | 2011-01-17 14:35:57 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-17 14:35:57 -0800 |
| commit | a8be673a9ca0046f200a092726cf5c690a328be9 (patch) | |
| tree | 81ed7d265ab7fbc98bb85379f41d478a74459189 | |
| parent | Fix the last known (to me) bug in import resolution. We were not properly (diff) | |
| download | rust-a8be673a9ca0046f200a092726cf5c690a328be9.tar.xz rust-a8be673a9ca0046f200a092726cf5c690a328be9.zip | |
Whitespace cleanup.
| -rw-r--r-- | src/comp/middle/trans.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/comp/middle/trans.rs b/src/comp/middle/trans.rs index 8b4add88..3a453db5 100644 --- a/src/comp/middle/trans.rs +++ b/src/comp/middle/trans.rs @@ -1319,15 +1319,15 @@ impure fn trans_lit(@block_ctxt cx, &ast.lit lit, &ast.ann ann) -> result { // re-do the mach-int types using 'big' when that works. auto t = T_int(); alt (tm) { - case (common.ty_u8) { t = T_i8(); } - case (common.ty_u16) { t = T_i16(); } - case (common.ty_u32) { t = T_i32(); } - case (common.ty_u64) { t = T_i64(); } - - case (common.ty_i8) { t = T_i8(); } - case (common.ty_i16) { t = T_i16(); } - case (common.ty_i32) { t = T_i32(); } - case (common.ty_i64) { t = T_i64(); } + case (common.ty_u8) { t = T_i8(); } + case (common.ty_u16) { t = T_i16(); } + case (common.ty_u32) { t = T_i32(); } + case (common.ty_u64) { t = T_i64(); } + + case (common.ty_i8) { t = T_i8(); } + case (common.ty_i16) { t = T_i16(); } + case (common.ty_i32) { t = T_i32(); } + case (common.ty_i64) { t = T_i64(); } case (_) { cx.fcx.ccx.sess.bug("bad mach int literal type"); } |