aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/comp/middle/trans.rs18
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");
}