mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-13 08:26:02 +00:00
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
This commit is contained in:
@@ -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.
|
; CodeGen should remat the zero instead of spilling it.
|
||||||
|
|
||||||
declare void @foo(i64 %p)
|
declare void @foo(i64 %p)
|
||||||
|
|
||||||
; CHECK: bar:
|
; CHECK: bar:
|
||||||
; CHECK: xorl %edi, %edi
|
; CHECK: xorl %e[[A0:di|cx]], %e
|
||||||
; CHECK: xorl %edi, %edi
|
; CHECK: xorl %e[[A0]], %e[[A0]]
|
||||||
define void @bar() nounwind {
|
define void @bar() nounwind {
|
||||||
call void @foo(i64 0)
|
call void @foo(i64 0)
|
||||||
call void @foo(i64 0)
|
call void @foo(i64 0)
|
||||||
@@ -14,8 +15,8 @@ define void @bar() nounwind {
|
|||||||
}
|
}
|
||||||
|
|
||||||
; CHECK: bat:
|
; CHECK: bat:
|
||||||
; CHECK: movq $-1, %rdi
|
; CHECK: movq $-1, %r[[A0]]
|
||||||
; CHECK: movq $-1, %rdi
|
; CHECK: movq $-1, %r[[A0]]
|
||||||
define void @bat() nounwind {
|
define void @bat() nounwind {
|
||||||
call void @foo(i64 -1)
|
call void @foo(i64 -1)
|
||||||
call void @foo(i64 -1)
|
call void @foo(i64 -1)
|
||||||
@@ -23,8 +24,8 @@ define void @bat() nounwind {
|
|||||||
}
|
}
|
||||||
|
|
||||||
; CHECK: bau:
|
; CHECK: bau:
|
||||||
; CHECK: movl $1, %edi
|
; CHECK: movl $1, %e[[A0]]
|
||||||
; CHECK: movl $1, %edi
|
; CHECK: movl $1, %e[[A0]]
|
||||||
define void @bau() nounwind {
|
define void @bau() nounwind {
|
||||||
call void @foo(i64 1)
|
call void @foo(i64 1)
|
||||||
call void @foo(i64 1)
|
call void @foo(i64 1)
|
||||||
|
Reference in New Issue
Block a user