Make TranslateX86CC return COND_INVALID instead of aborting when it
[oota-llvm.git] / test / CodeGen / X86 / lea.ll
index 1b295a4265ee2487a7a25edda60ce1d15cdca6a8..22a96448f029a30503131e3d95380c9c7221a6aa 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86-64 | FileCheck %s
+; RUN: llc < %s -march=x86-64 | FileCheck %s
 
 define i32 @test1(i32 %x) nounwind {
         %tmp1 = shl i32 %x, 3
@@ -28,7 +28,7 @@ bb2:
        ret i32 %x_offs
 ; CHECK: test2:
 ; CHECK:       leal    -5(%rdi), %eax
-; CHECK:       andl    $4294967292, %eax
+; CHECK:       andl    $-4, %eax
 ; CHECK:       negl    %eax
 ; CHECK:       leal    -4(%rdi,%rax), %eax
 }