blob: a8e00cd54ef71caa3d26dd02dda79bf8b3a41ebe [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00002define i32 @foo(i32 %x) {
3 ret i32 %x
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004}
5
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00006define i32 @main() {
7 %r = call i32 @foo( i32 0 ) ; <i32> [#uses=1]
8 ret i32 %r
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009}
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +000010