From ac676bef500d8cf55e3df47438b133a32b167060 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 3 Dec 2002 20:30:03 +0000 Subject: [PATCH] Testcase for call instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4890 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/test-call.ll | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/ExecutionEngine/test-call.ll 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 +}