summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/remat-mov-0.ll
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-02-22 07:21:25 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-02-22 07:21:25 +0000
commit88234f14a81553e2eefe29da927c3cea910a0e58 (patch)
tree543c765e37edee2d6dbe9e7afc733a5f33ff809c /test/CodeGen/X86/remat-mov-0.ll
parent902f1281410cc47966383643e1e02ad974c70ddc (diff)
downloadllvm-88234f14a81553e2eefe29da927c3cea910a0e58.tar.gz
llvm-88234f14a81553e2eefe29da927c3cea910a0e58.tar.bz2
llvm-88234f14a81553e2eefe29da927c3cea910a0e58.tar.xz
Relax expressions and add explicit triplets -linux and -win32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/remat-mov-0.ll')
-rw-r--r--test/CodeGen/X86/remat-mov-0.ll15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/CodeGen/X86/remat-mov-0.ll b/test/CodeGen/X86/remat-mov-0.ll
index 5fb445c935..f89cd33080 100644
--- a/test/CodeGen/X86/remat-mov-0.ll
+++ b/test/CodeGen/X86/remat-mov-0.ll
@@ -1,12 +1,13 @@
-; RUN: llc < %s -march=x86-64 | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
; CodeGen should remat the zero instead of spilling it.
declare void @foo(i64 %p)
; CHECK: bar:
-; CHECK: xorl %edi, %edi
-; CHECK: xorl %edi, %edi
+; CHECK: xorl %e[[A0:di|cx]], %e
+; CHECK: xorl %e[[A0]], %e[[A0]]
define void @bar() nounwind {
call void @foo(i64 0)
call void @foo(i64 0)
@@ -14,8 +15,8 @@ define void @bar() nounwind {
}
; CHECK: bat:
-; CHECK: movq $-1, %rdi
-; CHECK: movq $-1, %rdi
+; CHECK: movq $-1, %r[[A0]]
+; CHECK: movq $-1, %r[[A0]]
define void @bat() nounwind {
call void @foo(i64 -1)
call void @foo(i64 -1)
@@ -23,8 +24,8 @@ define void @bat() nounwind {
}
; CHECK: bau:
-; CHECK: movl $1, %edi
-; CHECK: movl $1, %edi
+; CHECK: movl $1, %e[[A0]]
+; CHECK: movl $1, %e[[A0]]
define void @bau() nounwind {
call void @foo(i64 1)
call void @foo(i64 1)