blob: ac9bd9235794e16f08a83371055275ffdee57b0e [file] [log] [blame]
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00001; RUN: llvm-as < %s | llc
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00003define i32 @foo(i32 %x) {
4 ret i32 42
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005}
6
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00007define i32 @main() {
8 %r = call i32 @foo( i32 15 ) ; <i32> [#uses=1]
9 ret i32 %r
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010}