mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 01:10:48 +00:00
4d53e7798c
Now that only the register-scavenger version of the CR spilling code remains, we no longer need the Darwin R2 hack. Darwin can use R0 as a spare register in any case where the System V ABI uses it (R0 is special architecturally, and so is reserved under all common ABIs). A few test cases needed to be updated to reflect the register-allocation changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176868 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
702 B
LLVM
23 lines
702 B
LLVM
; RUN: llc -disable-fp-elim < %s | FileCheck %s
|
|
; PR8749
|
|
target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f128:64:128-n32"
|
|
target triple = "powerpc-apple-darwin9.8"
|
|
|
|
define i32 @main() nounwind {
|
|
entry:
|
|
; Make sure we're generating references using the red zone
|
|
; CHECK: main:
|
|
; CHECK: stw r2, -12(r1)
|
|
%retval = alloca i32
|
|
%0 = alloca i32
|
|
%"alloca point" = bitcast i32 0 to i32
|
|
store i32 0, i32* %0, align 4
|
|
%1 = load i32* %0, align 4
|
|
store i32 %1, i32* %retval, align 4
|
|
br label %return
|
|
|
|
return: ; preds = %entry
|
|
%retval1 = load i32* %retval
|
|
ret i32 %retval1
|
|
}
|