Skip to content

Commit a8be673

Browse files
committed
Whitespace cleanup.
1 parent 58490d7 commit a8be673

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/comp/middle/trans.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,15 +1319,15 @@ impure fn trans_lit(@block_ctxt cx, &ast.lit lit, &ast.ann ann) -> result {
13191319
// re-do the mach-int types using 'big' when that works.
13201320
auto t = T_int();
13211321
alt (tm) {
1322-
case (common.ty_u8) { t = T_i8(); }
1323-
case (common.ty_u16) { t = T_i16(); }
1324-
case (common.ty_u32) { t = T_i32(); }
1325-
case (common.ty_u64) { t = T_i64(); }
1326-
1327-
case (common.ty_i8) { t = T_i8(); }
1328-
case (common.ty_i16) { t = T_i16(); }
1329-
case (common.ty_i32) { t = T_i32(); }
1330-
case (common.ty_i64) { t = T_i64(); }
1322+
case (common.ty_u8) { t = T_i8(); }
1323+
case (common.ty_u16) { t = T_i16(); }
1324+
case (common.ty_u32) { t = T_i32(); }
1325+
case (common.ty_u64) { t = T_i64(); }
1326+
1327+
case (common.ty_i8) { t = T_i8(); }
1328+
case (common.ty_i16) { t = T_i16(); }
1329+
case (common.ty_i32) { t = T_i32(); }
1330+
case (common.ty_i64) { t = T_i64(); }
13311331
case (_) {
13321332
cx.fcx.ccx.sess.bug("bad mach int literal type");
13331333
}

0 commit comments

Comments
 (0)