summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/vec_set-6.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-04-22 06:19:11 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-04-22 06:19:11 +0000
commitee183471a6aa931ef8a2456b96fe6b917a41d8e2 (patch)
treed1e28266e273c27849975d4dfcfa1ca251fedaed /test/CodeGen/X86/vec_set-6.ll
parentea4a9c575fa0a8c8c1dce5223a637a166e5c1f8c (diff)
downloadexternal_llvm-ee183471a6aa931ef8a2456b96fe6b917a41d8e2.zip
external_llvm-ee183471a6aa931ef8a2456b96fe6b917a41d8e2.tar.gz
external_llvm-ee183471a6aa931ef8a2456b96fe6b917a41d8e2.tar.bz2
Two more build_vector tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_set-6.ll')
-rw-r--r--test/CodeGen/X86/vec_set-6.ll9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/X86/vec_set-6.ll b/test/CodeGen/X86/vec_set-6.ll
new file mode 100644
index 0000000..0c325c9
--- /dev/null
+++ b/test/CodeGen/X86/vec_set-6.ll
@@ -0,0 +1,9 @@
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep unpcklps | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep shufps | wc -l | grep 1
+
+<4 x float> %test(float %a, float %b, float %c) {
+ %tmp = insertelement <4 x float> zeroinitializer, float %a, uint 1
+ %tmp8 = insertelement <4 x float> %tmp, float %b, uint 2
+ %tmp10 = insertelement <4 x float> %tmp8, float %c, uint 3
+ ret <4 x float> %tmp10
+}