blob: 3bd608ab59383b7e1121d70192dbb6c839f61659 [file] [log] [blame]
; Test various forms of calls.
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN: grep {bl } | count 2
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN: grep {bctrl} | count 1
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN: grep {bla } | count 1
declare void %foo()
void %test_direct() {
call void %foo()
ret void
}
void %test_extsym(sbyte *%P) {
free sbyte* %P
ret void
}
void %test_indirect(void()* %fp) {
call void %fp()
ret void
}
void %test_abs() {
%fp = cast int 400 to void()*
call void %fp()
ret void
}