llvm-6502/test/CodeGen/ARM/call.ll
2009-09-09 00:09:15 +00:00

20 lines
570 B
LLVM

; RUN: llc < %s -march=arm | grep {mov lr, pc}
; RUN: llc < %s -march=arm -mattr=+v5t | grep blx
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi\
; RUN: -relocation-model=pic | grep {PLT}
@t = weak global i32 ()* null ; <i32 ()**> [#uses=1]
declare void @g(i32, i32, i32, i32)
define void @f() {
call void @g( i32 1, i32 2, i32 3, i32 4 )
ret void
}
define void @g.upgrd.1() {
%tmp = load i32 ()** @t ; <i32 ()*> [#uses=1]
%tmp.upgrd.2 = tail call i32 %tmp( ) ; <i32> [#uses=0]
ret void
}