diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2015-02-16 21:50:56 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2015-02-16 21:50:56 +0000 |
commit | b2c00f3286cdde6bf7c5ac100d1a5d143e3cb098 (patch) | |
tree | d0bd27029197166c90945509d5ed5bdf1758ccde /llvm/test/CodeGen/X86/combine-or.ll | |
parent | 3e0023b8f6277b4b1335214bdf5ea4a76005fe33 (diff) | |
download | bcm5719-llvm-b2c00f3286cdde6bf7c5ac100d1a5d143e3cb098.tar.gz bcm5719-llvm-b2c00f3286cdde6bf7c5ac100d1a5d143e3cb098.zip |
[X86][SSE] Add SSE MOVQ instructions to SSEPackedInt domain
Patch to explicitly add the SSE MOVQ (rr,mr,rm) instructions to SSEPackedInt domain - prevents a number of costly domain switches.
Differential Revision: http://reviews.llvm.org/D7600
llvm-svn: 229439
Diffstat (limited to 'llvm/test/CodeGen/X86/combine-or.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/combine-or.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/combine-or.ll b/llvm/test/CodeGen/X86/combine-or.ll index f9e917a937c..8a0ffc128e5 100644 --- a/llvm/test/CodeGen/X86/combine-or.ll +++ b/llvm/test/CodeGen/X86/combine-or.ll @@ -255,7 +255,7 @@ define <4 x i32> @test19(<4 x i32> %a, <4 x i32> %b) { define <2 x i64> @test20(<2 x i64> %a, <2 x i64> %b) { ; CHECK-LABEL: test20: ; CHECK: # BB#0: -; CHECK-NEXT: orps %xmm1, %xmm0 +; CHECK-NEXT: por %xmm1, %xmm0 ; CHECK-NEXT: movq {{.*#+}} xmm0 = xmm0[0],zero ; CHECK-NEXT: retq %shuf1 = shufflevector <2 x i64> %a, <2 x i64> zeroinitializer, <2 x i32><i32 0, i32 2> |