mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 01:10:48 +00:00
f3c3828e57
Allow load-immediates to be rematerialised in the register coalescer for PPC. This makes test/CodeGen/PowerPC/big-endian-formal-args.ll fail, because it relies on a register move getting emitted. The immediate load is equivalent, so change this test case. Patch by Tobias von Koch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162727 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
249 B
LLVM
14 lines
249 B
LLVM
; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
|
|
|
|
declare void @bar(i64 %x, i64 %y)
|
|
|
|
; CHECK: li 3, 0
|
|
; CHECK: li 4, 2
|
|
; CHECK: li 5, 0
|
|
; CHECK: li 6, 3
|
|
|
|
define void @foo() {
|
|
call void @bar(i64 2, i64 3)
|
|
ret void
|
|
}
|