aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-01-17 14:35:57 -0800
committerGraydon Hoare <[email protected]>2011-01-17 14:35:57 -0800
commita8be673a9ca0046f200a092726cf5c690a328be9 (patch)
tree81ed7d265ab7fbc98bb85379f41d478a74459189 /src
parentFix the last known (to me) bug in import resolution. We were not properly (diff)
downloadrust-a8be673a9ca0046f200a092726cf5c690a328be9.tar.xz
rust-a8be673a9ca0046f200a092726cf5c690a328be9.zip
Whitespace cleanup.
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");
}