add a cl::opt override for TargetLoweringBase's JumpIsExpensive
[oota-llvm.git] / test / CodeGen / X86 / pr14562.ll
index 2df64b301dae3ad2021e5d0bccde089c4b9b8742..31674546423eb0aad310723fb7d1f7260fc780a3 100644 (file)
@@ -3,13 +3,13 @@
 @temp1 = global i64 -77129852189294865, align 8
 
 define void @foo() nounwind {
-  %x = load i64* @temp1, align 8
+  %x = load i64, i64* @temp1, align 8
   %s = shl i64 %x, 32
   %t = trunc i64 %s to i32
   %z = zext i32 %t to i64
   store i64 %z, i64* @temp1, align 8
-; CHECK: movl $0, temp1+4
-; CHECK: movl $0, temp1
+; CHECK: movl $0, {{_?}}temp1+4                                                
+; CHECK: movl $0, {{_?}}temp1
   ret void
 }