aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/call-ret42.ll
blob: 3501288ab4b59a974cadbe09167c20f88cb0ee2e (plain)
1
2
3
4
5
6
7
8
int %foo(int %x) {
  ret int 42
}

int %main() {  
  %r = call int %foo(int 15) 
  ret int %r
}