Testcase for call instruction

llvm-svn: 4890
This commit is contained in:
Chris Lattner 2002-12-03 20:30:03 +00:00
parent dd6df94b00
commit a148496989
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare void %foo()
void %test1() {
call void %foo()
ret void
}