llvm-6502/test/CodeGen/PowerPC/calls.ll
Reid Spencer c58ef0185b For PR1319: Upgrade to new test harness.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36087 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-15 21:17:45 +00:00

32 lines
599 B
LLVM

; Test various forms of calls.
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN: grep {bl } | wc -l | grep 2
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN: grep {bctrl} | wc -l | grep 1
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN: grep {bla } | wc -l | grep 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
}