Files
archived-llvm/test/ExecutionEngine/test-call.ll
Chris Lattner ac676bef50 Testcase for call instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4890 91177308-0d34-0410-b5e6-96231b3b80d8
2002-12-03 20:30:03 +00:00

8 lines
68 B
LLVM

declare void %foo()
void %test1() {
call void %foo()
ret void
}