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