]> git.lizzy.rs Git - rust.git/commitdiff
Remove a redundant bitcast from fail!() handling
authorJakub Wieczorek <jakub@jakub.cc>
Sun, 8 Jun 2014 18:01:38 +0000 (20:01 +0200)
committerJakub Wieczorek <jakub@jakub.cc>
Sun, 8 Jun 2014 18:01:38 +0000 (20:01 +0200)
src/librustc/middle/trans/controlflow.rs

index ea152c348087c4052d05682e862909f16f775464..a6290a8edb4421f33ab0b3419e22296889c966d8 100644 (file)
@@ -20,7 +20,6 @@
 use middle::trans::common::*;
 use middle::trans::debuginfo;
 use middle::trans::expr;
-use middle::trans::type_of;
 use middle::ty;
 use util::ppaux::Repr;
 
@@ -343,14 +342,10 @@ pub fn trans_ret<'a>(bcx: &'a Block<'a>,
 
 fn str_slice_arg<'a>(bcx: &'a Block<'a>, s: InternedString) -> ValueRef {
     let ccx = bcx.ccx();
-    let t = ty::mk_str_slice(bcx.tcx(), ty::ReStatic, ast::MutImmutable);
     let s = C_str_slice(ccx, s);
     let slot = alloca(bcx, val_ty(s), "__temp");
     Store(bcx, s, slot);
-
-    // The type of C_str_slice is { i8*, i64 }, but the type of the &str is
-    // %str_slice, so we do a bitcast here to the right type.
-    BitCast(bcx, slot, type_of::type_of(ccx, t).ptr_to())
+    slot
 }
 
 pub fn trans_fail<'a>(