diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-17 04:20:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-17 04:20:13 +0000 |
commit | 732baf35f957343560815b0a3830607a5608094b (patch) | |
tree | c5ee9e1a466cec4a8ab14af669e50744dc049b14 /test/CodeGen/PowerPC/calls.ll | |
parent | 413100fcb5222e873db596026c3f18790a1909ab (diff) |
add an external symbol testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28345 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/calls.ll')
-rw-r--r-- | test/CodeGen/PowerPC/calls.ll | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/calls.ll b/test/CodeGen/PowerPC/calls.ll index fa0567fc9c..105f470dee 100644 --- a/test/CodeGen/PowerPC/calls.ll +++ b/test/CodeGen/PowerPC/calls.ll @@ -1,6 +1,6 @@ ; 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 'bl ' | wc -l | grep 2 && ; 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 @@ -11,6 +11,11 @@ void %test_direct() { ret void } +void %test_extsym(sbyte *%P) { + free sbyte* %P + ret void +} + void %test_indirect(void()* %fp) { call void %fp() ret void |