summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_insert-9.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-08-28 17:59:08 +0000
committerChris Lattner <sabre@nondot.org>2010-08-28 17:59:08 +0000
commit24faf611a33900b225c636f908eb30234215af21 (patch)
treefb412877725cb1019812ce5b68beab763bc9347b /test/CodeGen/X86/vec_insert-9.ll
parent3ddcc430401f0d16bee17b2afb52dcaa2f480f8b (diff)
downloadllvm-24faf611a33900b225c636f908eb30234215af21.tar.gz
llvm-24faf611a33900b225c636f908eb30234215af21.tar.bz2
llvm-24faf611a33900b225c636f908eb30234215af21.tar.xz
fix the buildvector->insertp[sd] logic to not always create a redundant
insertp[sd] $0, which is a noop. Before: _f32: ## @f32 pshufd $1, %xmm1, %xmm2 pshufd $1, %xmm0, %xmm3 addss %xmm2, %xmm3 addss %xmm1, %xmm0 ## kill: XMM0<def> XMM0<kill> XMM0<def> insertps $0, %xmm0, %xmm0 insertps $16, %xmm3, %xmm0 ret after: _f32: ## @f32 movdqa %xmm0, %xmm2 addss %xmm1, %xmm2 pshufd $1, %xmm1, %xmm1 pshufd $1, %xmm0, %xmm3 addss %xmm1, %xmm3 movdqa %xmm2, %xmm0 insertps $16, %xmm3, %xmm0 ret The extra movs are due to a random (poor) scheduling decision. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_insert-9.ll')
-rw-r--r--test/CodeGen/X86/vec_insert-9.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_insert-9.ll b/test/CodeGen/X86/vec_insert-9.ll
index 2e829df1f8..e5a7ccc5ef 100644
--- a/test/CodeGen/X86/vec_insert-9.ll
+++ b/test/CodeGen/X86/vec_insert-9.ll
@@ -1,5 +1,5 @@
; RUN: llc < %s -march=x86 -mattr=+sse41 > %t
-; RUN: grep pinsrd %t | count 2
+; RUN: grep pinsrd %t | count 1
define <4 x i32> @var_insert2(<4 x i32> %x, i32 %val, i32 %idx) nounwind {
entry: