diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-03 20:30:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-03 20:30:03 +0000 |
commit | ac676bef500d8cf55e3df47438b133a32b167060 (patch) | |
tree | eab11bd50d0ff0a588067c0874cc848bb2226861 /test/ExecutionEngine | |
parent | 92ae6c23f1404c54c207f06700ea282740e37f81 (diff) | |
download | external_llvm-ac676bef500d8cf55e3df47438b133a32b167060.zip external_llvm-ac676bef500d8cf55e3df47438b133a32b167060.tar.gz external_llvm-ac676bef500d8cf55e3df47438b133a32b167060.tar.bz2 |
Testcase for call instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4890 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r-- | test/ExecutionEngine/test-call.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-call.ll b/test/ExecutionEngine/test-call.ll new file mode 100644 index 0000000..6699bb6 --- /dev/null +++ b/test/ExecutionEngine/test-call.ll @@ -0,0 +1,7 @@ + +declare void %foo() + +void %test1() { + call void %foo() + ret void +} |