aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-02-22 07:20:10 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-02-22 07:20:10 +0000
commit62627126fe80caaa2716ab454a1ad0b02921e32e (patch)
tree3c0bfcf7acad4a57b0915227ce1e417f1e3def33
parent64779f4b87d8f9fef52c59cc4844ff8e7536a5b5 (diff)
downloadexternal_llvm-62627126fe80caaa2716ab454a1ad0b02921e32e.zip
external_llvm-62627126fe80caaa2716ab454a1ad0b02921e32e.tar.gz
external_llvm-62627126fe80caaa2716ab454a1ad0b02921e32e.tar.bz2
Relax expressions and add explicit triplets -linux and -win32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126203 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/gather-addresses.ll23
1 files changed, 12 insertions, 11 deletions
diff --git a/test/CodeGen/X86/gather-addresses.ll b/test/CodeGen/X86/gather-addresses.ll
index 134ee28..4a6927f 100644
--- a/test/CodeGen/X86/gather-addresses.ll
+++ b/test/CodeGen/X86/gather-addresses.ll
@@ -1,20 +1,21 @@
-; RUN: llc -march=x86-64 < %s | FileCheck %s
+; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
+; RUN: llc -mtriple=x86_64-win32 < %s | FileCheck %s
; rdar://7398554
; When doing vector gather-scatter index calculation with 32-bit indices,
; bounce the vector off of cache rather than shuffling each individual
; element out of the index vector.
-; CHECK: andps (%rdx), %xmm0
-; CHECK: movaps %xmm0, -24(%rsp)
-; CHECK: movslq -24(%rsp), %rax
-; CHECK: movsd (%rdi,%rax,8), %xmm0
-; CHECK: movslq -20(%rsp), %rax
-; CHECK: movhpd (%rdi,%rax,8), %xmm0
-; CHECK: movslq -16(%rsp), %rax
-; CHECK: movsd (%rdi,%rax,8), %xmm1
-; CHECK: movslq -12(%rsp), %rax
-; CHECK: movhpd (%rdi,%rax,8), %xmm1
+; CHECK: andps ([[H:%rdx|%r8]]), %xmm0
+; CHECK: movaps %xmm0, {{(-24)?}}(%rsp)
+; CHECK: movslq {{(-24)?}}(%rsp), %rax
+; CHECK: movsd ([[P:%rdi|%rcx]],%rax,8), %xmm0
+; CHECK: movslq {{-20|4}}(%rsp), %rax
+; CHECK: movhpd ([[P]],%rax,8), %xmm0
+; CHECK: movslq {{-16|8}}(%rsp), %rax
+; CHECK: movsd ([[P]],%rax,8), %xmm1
+; CHECK: movslq {{-12|12}}(%rsp), %rax
+; CHECK: movhpd ([[P]],%rax,8), %xmm1
define <4 x double> @foo(double* %p, <4 x i32>* %i, <4 x i32>* %h) nounwind {
%a = load <4 x i32>* %i