diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-10 22:08:18 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-10 22:08:18 +0000 |
commit | 13a7db5b9c4f5e543d037be68ec3428216bfd550 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/CodeGen/X86/fast-isel.ll | |
parent | 0eb46f5d1e06a4284663d636a74b06adc3a161d7 (diff) | |
parent | 31195f0bdca6ee2a5e72d07edf13e1d81206d949 (diff) | |
download | external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.zip external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.gz external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.bz2 |
am 31195f0b: Merge "Update aosp/master llvm for rebase to r233350"
* commit '31195f0bdca6ee2a5e72d07edf13e1d81206d949':
Update aosp/master llvm for rebase to r233350
Diffstat (limited to 'test/CodeGen/X86/fast-isel.ll')
-rw-r--r-- | test/CodeGen/X86/fast-isel.ll | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index bc79184..36183e4 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/test/CodeGen/X86/fast-isel.ll @@ -1,13 +1,13 @@ -; RUN: llc < %s -fast-isel -fast-isel-abort -verify-machineinstrs -march=x86 -mattr=sse2 -no-integrated-as -; RUN: llc < %s -fast-isel -fast-isel-abort -verify-machineinstrs -mtriple=x86_64-apple-darwin10 -no-integrated-as +; RUN: llc < %s -fast-isel -fast-isel-abort=1 -verify-machineinstrs -march=x86 -mattr=sse2 -no-integrated-as +; RUN: llc < %s -fast-isel -fast-isel-abort=1 -verify-machineinstrs -mtriple=x86_64-apple-darwin10 -no-integrated-as ; This tests very minimal fast-isel functionality. define i32* @foo(i32* %p, i32* %q, i32** %z) nounwind { entry: - %r = load i32* %p - %s = load i32* %q - %y = load i32** %z + %r = load i32, i32* %p + %s = load i32, i32* %q + %y = load i32*, i32** %z br label %fast fast: @@ -18,8 +18,8 @@ fast: %t4 = xor i32 %t3, 3 %t5 = xor i32 %t4, %s %t6 = add i32 %t5, 2 - %t7 = getelementptr i32* %y, i32 1 - %t8 = getelementptr i32* %t7, i32 %t6 + %t7 = getelementptr i32, i32* %y, i32 1 + %t8 = getelementptr i32, i32* %t7, i32 %t6 call void asm sideeffect "hello world", ""() br label %exit @@ -29,8 +29,8 @@ exit: define void @bar(double* %p, double* %q) nounwind { entry: - %r = load double* %p - %s = load double* %q + %r = load double, double* %p + %s = load double, double* %q br label %fast fast: @@ -94,7 +94,7 @@ define void @mul_i8(i8 %a, i8* %p) nounwind { } define void @load_store_i1(i1* %p, i1* %q) nounwind { - %t = load i1* %p + %t = load i1, i1* %p store i1 %t, i1* %q ret void } @@ -102,7 +102,7 @@ define void @load_store_i1(i1* %p, i1* %q) nounwind { @crash_test1x = external global <2 x i32>, align 8 define void @crash_test1() nounwind ssp { - %tmp = load <2 x i32>* @crash_test1x, align 8 + %tmp = load <2 x i32>, <2 x i32>* @crash_test1x, align 8 %neg = xor <2 x i32> %tmp, <i32 -1, i32 -1> ret void } @@ -113,7 +113,7 @@ define i64* @life() nounwind { %a1 = alloca i64*, align 8 %a2 = bitcast i64** %a1 to i8* call void @llvm.lifetime.start(i64 -1, i8* %a2) nounwind - %a3 = load i64** %a1, align 8 + %a3 = load i64*, i64** %a1, align 8 ret i64* %a3 } |