mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
367c494415
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. llvm-svn: 162727
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
|
|
}
|