blob: 7ab966ba90701a86a5664614646853af20e08aab [file] [log] [blame]
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00001; RUN: llvm-as < %s | llc
2define 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