diff options
Diffstat (limited to 'test/CodeGen/X86/fast-isel-i1.ll')
-rw-r--r-- | test/CodeGen/X86/fast-isel-i1.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/fast-isel-i1.ll b/test/CodeGen/X86/fast-isel-i1.ll index 9c042d3..d72a31c 100644 --- a/test/CodeGen/X86/fast-isel-i1.ll +++ b/test/CodeGen/X86/fast-isel-i1.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -mtriple=i686-apple-darwin10 -fast-isel -fast-isel-abort | FileCheck %s -; RUN: llc < %s -mtriple=x86_64-apple-darwin10 -fast-isel -fast-isel-abort | FileCheck %s +; RUN: llc < %s -mtriple=i686-apple-darwin10 -fast-isel -fast-isel-abort=1 | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-apple-darwin10 -fast-isel -fast-isel-abort=1 | FileCheck %s declare i32 @test1a(i32) @@ -27,7 +27,7 @@ entry: ; CHECK: movb {{.*}} %al ; CHECK-NEXT: xorb $1, %al ; CHECK-NEXT: testb $1 - %tmp = load i8* %a, align 1 + %tmp = load i8, i8* %a, align 1 %tobool = trunc i8 %tmp to i1 %tobool2 = xor i1 %tobool, true br i1 %tobool2, label %if.then, label %if.end |