diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-07-09 22:01:03 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-07-09 22:01:03 +0000 |
commit | f1896f2694f5bc4aa4d10c3007821e0772889f24 (patch) | |
tree | 00f8af7d1bfa6165c868a13adc39b98f4f7dd522 /test | |
parent | e3dad534b10bde98cd888de509c948c5f34f9e0a (diff) | |
download | external_llvm-f1896f2694f5bc4aa4d10c3007821e0772889f24.zip external_llvm-f1896f2694f5bc4aa4d10c3007821e0772889f24.tar.gz external_llvm-f1896f2694f5bc4aa4d10c3007821e0772889f24.tar.bz2 |
Make EXTRACT_VECTOR_ELT a bit more flexible in terms of the returned
value. Adjust other code to deal with that correctly. Make
DAGTypeLegalizer::PromoteIntRes_EXTRACT_VECTOR_ELT take advantage of
this new flexibility to simplify the code and make it deal with unusual
vectors (like <4 x i1>) correctly. Fixes PR3037.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/2009-07-07-SplitICmp.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/X86/2009-07-09-ExtractBoolFromVector.ll | 11 |
2 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2009-07-07-SplitICmp.ll b/test/CodeGen/X86/2009-07-07-SplitICmp.ll new file mode 100644 index 0000000..9a7b52d --- /dev/null +++ b/test/CodeGen/X86/2009-07-07-SplitICmp.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=x86 -disable-mmx + +define void @test2(<2 x i32> %A, <2 x i32> %B, <2 x i32>* %C) nounwind { + %D = icmp sgt <2 x i32> %A, %B + %E = zext <2 x i1> %D to <2 x i32> + store <2 x i32> %E, <2 x i32>* %C + ret void +} diff --git a/test/CodeGen/X86/2009-07-09-ExtractBoolFromVector.ll b/test/CodeGen/X86/2009-07-09-ExtractBoolFromVector.ll new file mode 100644 index 0000000..62a62a6 --- /dev/null +++ b/test/CodeGen/X86/2009-07-09-ExtractBoolFromVector.ll @@ -0,0 +1,11 @@ +; RUN: llvm-as < %s | llc -march=x86 +; PR3037 + +define void @entry(<4 x i8>* %dest) { + %1 = xor <4 x i1> zeroinitializer, < i1 true, i1 true, i1 true, i1 true > + %2 = extractelement <4 x i1> %1, i32 3 + %3 = zext i1 %2 to i8 + %4 = insertelement <4 x i8> zeroinitializer, i8 %3, i32 3 + store <4 x i8> %4, <4 x i8>* %dest, align 1 + ret void +} |