From: Chris Lattner Date: Wed, 17 May 2006 03:57:31 +0000 (+0000) Subject: new test for various forms of calls X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=413100fcb5222e873db596026c3f18790a1909ab;p=oota-llvm.git new test for various forms of calls git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28344 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/calls.ll b/test/CodeGen/PowerPC/calls.ll new file mode 100644 index 00000000000..fa0567fc9c1 --- /dev/null +++ b/test/CodeGen/PowerPC/calls.ll @@ -0,0 +1,23 @@ +; Test various forms of calls. + +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'bl ' | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'bctrl' | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'bla ' | wc -l | grep 1 + +declare void %foo() + +void %test_direct() { + call void %foo() + 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 +}