blob: a8e00cd54ef71caa3d26dd02dda79bf8b3a41ebe [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s
Tanya Lattner53a66d12008-02-19 01:41:04 +00002define i32 @foo(i32 %x) {
3 ret i32 %x
Misha Brukman5b160f12004-08-11 14:16:34 +00004}
5
Tanya Lattner53a66d12008-02-19 01:41:04 +00006define i32 @main() {
7 %r = call i32 @foo( i32 0 ) ; <i32> [#uses=1]
8 ret i32 %r
Misha Brukman5b160f12004-08-11 14:16:34 +00009}
Tanya Lattner53a66d12008-02-19 01:41:04 +000010