diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/vec_set-6.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_set-6.ll | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/X86/vec_set-6.ll b/llvm/test/CodeGen/X86/vec_set-6.ll index 1d8c76d586c..4429834b8ef 100644 --- a/llvm/test/CodeGen/X86/vec_set-6.ll +++ b/llvm/test/CodeGen/X86/vec_set-6.ll @@ -1,12 +1,16 @@ -; RUN: llc < %s -march=x86 -mattr=+sse2 -o %t -; RUN: grep movss %t | count 1 -; RUN: grep movsd %t | count 1 -; RUN: grep shufps %t | count 1 +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py +; RUN: llc < %s -mtriple=i386-unknown -mattr=+sse2,+sse4.1 | FileCheck %s define <4 x float> @test(float %a, float %b, float %c) nounwind { - %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 1 ; <<4 x float>> [#uses=1] - %tmp8 = insertelement <4 x float> %tmp, float %b, i32 2 ; <<4 x float>> [#uses=1] - %tmp10 = insertelement <4 x float> %tmp8, float %c, i32 3 ; <<4 x float>> [#uses=1] - ret <4 x float> %tmp10 +; CHECK-LABEL: test: +; CHECK: # BB#0: +; CHECK-NEXT: movsd {{.*#+}} xmm1 = mem[0],zero +; CHECK-NEXT: movss {{.*#+}} xmm0 = mem[0],zero,zero,zero +; CHECK-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,0],xmm1[0,1] +; CHECK-NEXT: retl + %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 1 + %tmp8 = insertelement <4 x float> %tmp, float %b, i32 2 + %tmp10 = insertelement <4 x float> %tmp8, float %c, i32 3 + ret <4 x float> %tmp10 } |