mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 20:06:46 +00:00
1e81966626
matches what llvm-gcc and clang now produce. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106221 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
488 B
LLVM
21 lines
488 B
LLVM
; RUN: llc < %s -regalloc=fast -relocation-model=pic | FileCheck %s
|
|
|
|
target triple = "thumbv6-apple-darwin10"
|
|
|
|
@fred = internal global i32 0 ; <i32*> [#uses=1]
|
|
|
|
define void @foo() nounwind {
|
|
entry:
|
|
; CHECK: str r0, [sp
|
|
%0 = call i32 (...)* @bar() nounwind ; <i32> [#uses=1]
|
|
; CHECK: blx _bar
|
|
; CHECK: ldr r1, [sp
|
|
store i32 %0, i32* @fred, align 4
|
|
br label %return
|
|
|
|
return: ; preds = %entry
|
|
ret void
|
|
}
|
|
|
|
declare i32 @bar(...)
|