Simple hand-coded tests to aid in early development of backends, along with a
[oota-llvm.git] / test / CodeGen / Generic / call-void.ll
1 void %foo() {
2   ret void
3 }
4
5 int %main() {  
6   call void ()* %foo() 
7   ret int 0
8 }