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

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