diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-22 07:21:17 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-22 07:21:17 +0000 |
commit | 902f1281410cc47966383643e1e02ad974c70ddc (patch) | |
tree | 1162cc420ec5a8faaa3b1b1f1d9df3be0e7624fb /test/CodeGen/X86 | |
parent | 166b79fb247f30da4fed06c0d40657b0b5e08c58 (diff) | |
download | external_llvm-902f1281410cc47966383643e1e02ad974c70ddc.zip external_llvm-902f1281410cc47966383643e1e02ad974c70ddc.tar.gz external_llvm-902f1281410cc47966383643e1e02ad974c70ddc.tar.bz2 |
Relax expressions and add explicit triplets -linux and -win32.
On @foobar(double %d, double* %x),
AMD64: (%xmm0, %rdi)
Win64: (%xmm0, %rdx) (not %rcx!)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126211 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r-- | test/CodeGen/X86/pr9127.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGen/X86/pr9127.ll b/test/CodeGen/X86/pr9127.ll index 45b0c6c..9b251f5 100644 --- a/test/CodeGen/X86/pr9127.ll +++ b/test/CodeGen/X86/pr9127.ll @@ -1,4 +1,5 @@ -; 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 define i8 @foobar(double %d, double* %x) { entry: @@ -9,4 +10,4 @@ entry: } ; test that the load is folded. -; CHECK: ucomisd (%rdi), %xmm0 +; CHECK: ucomisd (%{{rdi|rdx}}), %xmm0 |