hanchenye-llvm-project/llvm/test/CodeGen/ARM/call.ll

17 lines
363 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep {mov lr, pc}
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+v5t | grep blx
%t = weak global int ()* null
declare void %g(int, int, int, int)
2006-10-19 00:21:43 +08:00
void %f() {
call void %g( int 1, int 2, int 3, int 4 )
ret void
}
void %g() {
%tmp = load int ()** %t
%tmp = tail call int %tmp( )
2006-10-19 00:21:43 +08:00
ret void
}