summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll
diff options
context:
space:
mode:
authorNadav Rotem <nadav.rotem@intel.com>2011-10-16 20:31:33 +0000
committerNadav Rotem <nadav.rotem@intel.com>2011-10-16 20:31:33 +0000
commit8fb06b3e8f7fc92e472e17fecf5ee3ba44fbb6ab (patch)
tree0bb4f05809105f8db17e8f199f0627d92cd6f04c /test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll
parentc4a90c5271de99e682b00986c9ca7cde3e1dde4f (diff)
downloadllvm-8fb06b3e8f7fc92e472e17fecf5ee3ba44fbb6ab.tar.gz
llvm-8fb06b3e8f7fc92e472e17fecf5ee3ba44fbb6ab.tar.bz2
llvm-8fb06b3e8f7fc92e472e17fecf5ee3ba44fbb6ab.tar.xz
Enable element promotion type legalization by deafault.
Changed tests which assumed that vectors are legalized by widening them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll')
-rw-r--r--test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll b/test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll
index 2dc1deaf17..757f1ff682 100644
--- a/test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll
+++ b/test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=x86 -mattr=+sse2 -mattr=+mmx | grep unpcklpd
-; RUN: llc < %s -march=x86 -mattr=+sse2 -mattr=+mmx | grep unpckhpd
+; RUN: llc < %s -march=x86 -mattr=+sse2 -mattr=+mmx | not grep unpcklpd
+; RUN: llc < %s -march=x86 -mattr=+sse2 -mattr=+mmx | not grep unpckhpd
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep cvttpd2pi | count 1
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep cvtpi2pd | count 1
; originally from PR2687, but things don't work that way any more.