diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/vec_set-5.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_set-5.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/vec_set-5.ll b/llvm/test/CodeGen/X86/vec_set-5.ll index 218f0415fd7..cf3ac4c9788 100644 --- a/llvm/test/CodeGen/X86/vec_set-5.ll +++ b/llvm/test/CodeGen/X86/vec_set-5.ll @@ -1,7 +1,7 @@ ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse2 -o %t -f -; RUN: grep movlhps %t | wc -l | grep 2 -; RUN: grep unpcklps %t | wc -l | grep 1 -; RUN: grep punpckldq %t | wc -l | grep 1 +; RUN: grep movlhps %t | count 2 +; RUN: grep unpcklps %t | count 1 +; RUN: grep punpckldq %t | count 1 <4 x float> %test1(float %a, float %b) { %tmp = insertelement <4 x float> zeroinitializer, float %a, uint 0 |