Files
clang-p2996/llvm/test/Regression/CodeGen/Generic/call-void.ll
Misha Brukman 81f6ee8070 Simple hand-coded tests to aid in early development of backends, along with a
Makefile to run ad-hoc tests easily.

llvm-svn: 15664
2004-08-11 14:16:34 +00:00

9 lines
82 B
LLVM

void %foo() {
ret void
}
int %main() {
call void ()* %foo()
ret int 0
}