summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/sse2-blend.ll
diff options
context:
space:
mode:
authorNadav Rotem <nadav.rotem@intel.com>2011-10-10 19:31:45 +0000
committerNadav Rotem <nadav.rotem@intel.com>2011-10-10 19:31:45 +0000
commita7934dd8e4d61346f7a66736653c1e76750322ad (patch)
tree1dcddc562f6c55fb06f451c7c33556c0b3520459 /test/CodeGen/X86/sse2-blend.ll
parent9ac743a4ee61cb845bbe22a2f6898f38c2adafce (diff)
downloadllvm-a7934dd8e4d61346f7a66736653c1e76750322ad.tar.gz
llvm-a7934dd8e4d61346f7a66736653c1e76750322ad.tar.bz2
llvm-a7934dd8e4d61346f7a66736653c1e76750322ad.tar.xz
Fix 10892 - When lowering SIGN_EXTEND_INREG do not lower v2i64 because the
instruction set has no 64-bit SRA support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141570 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/sse2-blend.ll')
-rw-r--r--test/CodeGen/X86/sse2-blend.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/sse2-blend.ll b/test/CodeGen/X86/sse2-blend.ll
index 1c86b31a8b..56b099ec42 100644
--- a/test/CodeGen/X86/sse2-blend.ll
+++ b/test/CodeGen/X86/sse2-blend.ll
@@ -24,8 +24,8 @@ define void@vsel_i32(<4 x i32>* %v1, <4 x i32>* %v2) {
; CHECK: vsel_i64
; CHECK: pxor
; CHECK: pand
-; CHECK: pandn
-; CHECK: por
+; CHECK: andnps
+; CHECK: orps
; CHECK: ret
define void@vsel_i64(<4 x i64>* %v1, <4 x i64>* %v2) {
@@ -39,8 +39,8 @@ define void@vsel_i64(<4 x i64>* %v1, <4 x i64>* %v2) {
; CHECK: vsel_double
; CHECK: pxor
; CHECK: pand
-; CHECK: pandn
-; CHECK: por
+; CHECK: andnps
+; CHECK: orps
; CHECK: ret