aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/vec_shuffle-24.ll
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-10-01 23:18:38 +0000
committerDevang Patel <dpatel@apple.com>2008-10-01 23:18:38 +0000
commit4ae641f4d12c60ee1aaca5e42b6de231c6a02c40 (patch)
tree76f97c15558ecdeb6cb91a6282320c169d52dae9 /test/CodeGen/X86/vec_shuffle-24.ll
parentdc756858f92a397ed30362ba8251fec56479735f (diff)
downloadexternal_llvm-4ae641f4d12c60ee1aaca5e42b6de231c6a02c40.zip
external_llvm-4ae641f4d12c60ee1aaca5e42b6de231c6a02c40.tar.gz
external_llvm-4ae641f4d12c60ee1aaca5e42b6de231c6a02c40.tar.bz2
Remove OptimizeForSize global. Use function attribute optsize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_shuffle-24.ll')
-rw-r--r--test/CodeGen/X86/vec_shuffle-24.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/X86/vec_shuffle-24.ll b/test/CodeGen/X86/vec_shuffle-24.ll
new file mode 100644
index 0000000..170ba35
--- /dev/null
+++ b/test/CodeGen/X86/vec_shuffle-24.ll
@@ -0,0 +1,17 @@
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep punpck
+
+define i32 @t() nounwind optsize {
+entry:
+ %a = alloca <4 x i32> ; <<4 x i32>*> [#uses=2]
+ %b = alloca <4 x i32> ; <<4 x i32>*> [#uses=5]
+ volatile store <4 x i32> < i32 0, i32 1, i32 2, i32 3 >, <4 x i32>* %a
+ %tmp = load <4 x i32>* %a ; <<4 x i32>> [#uses=1]
+ store <4 x i32> %tmp, <4 x i32>* %b
+ %tmp1 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1]
+ %tmp2 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1]
+ %punpckldq = shufflevector <4 x i32> %tmp1, <4 x i32> %tmp2, <4 x i32> < i32 0, i32 4, i32 1, i32 5 > ; <<4 x i32>> [#uses=1]
+ store <4 x i32> %punpckldq, <4 x i32>* %b
+ %tmp3 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1]
+ %result = extractelement <4 x i32> %tmp3, i32 0 ; <i32> [#uses=1]
+ ret i32 %result
+}