From: Chris Lattner Date: Tue, 3 Dec 2002 20:30:03 +0000 (+0000) Subject: Testcase for call instruction X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ac676bef500d8cf55e3df47438b133a32b167060;p=oota-llvm.git Testcase for call instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4890 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/ExecutionEngine/test-call.ll b/test/ExecutionEngine/test-call.ll new file mode 100644 index 00000000000..6699bb65bae --- /dev/null +++ b/test/ExecutionEngine/test-call.ll @@ -0,0 +1,7 @@ + +declare void %foo() + +void %test1() { + call void %foo() + ret void +}