aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-08-31 03:04:20 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-08-31 03:04:20 +0000
commit57d6a5e491d9ca7a022a156d5a878a54b95f857f (patch)
tree6b10f2031a6b5ceeb140737245f98a1c485c31c9 /test/CodeGen/X86
parentfc646a6b06de1a831ee51a176567ab50f2f6accd (diff)
downloadexternal_llvm-57d6a5e491d9ca7a022a156d5a878a54b95f857f.zip
external_llvm-57d6a5e491d9ca7a022a156d5a878a54b95f857f.tar.gz
external_llvm-57d6a5e491d9ca7a022a156d5a878a54b95f857f.tar.bz2
- Move all MOVSS and MOVSD patterns close to their definitions
- Duplicate some store patterns to their AVX forms! - Catched a bug while restricting the patterns subtarget, fix it and update a testcase to check it properly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r--test/CodeGen/X86/2009-06-18-movlp-shuffle-register.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/X86/2009-06-18-movlp-shuffle-register.ll b/test/CodeGen/X86/2009-06-18-movlp-shuffle-register.ll
index 228cd48..8ea70b4 100644
--- a/test/CodeGen/X86/2009-06-18-movlp-shuffle-register.ll
+++ b/test/CodeGen/X86/2009-06-18-movlp-shuffle-register.ll
@@ -1,8 +1,9 @@
-; RUN: llc < %s -march=x86 -mattr=+sse,-sse2
+; RUN: llc < %s -march=x86 -mattr=+sse,-sse2 | FileCheck %s
; PR2484
define <4 x float> @f4523(<4 x float> %a,<4 x float> %b) nounwind {
entry:
+; CHECK: shufps $-28, %xmm
%shuffle = shufflevector <4 x float> %a, <4 x float> %b, <4 x i32> <i32 4,i32
5,i32 2,i32 3>
ret <4 x float> %shuffle