blob: 0ed5b44c1b3aa3d856f50df1d537eb7151511456 [file] [log] [blame]
Gabor Greif5edf2102008-05-20 22:07:21 +00001; RUN: llvm-as %s -f -o %t.bc
Tanya Lattnere9789ef2004-11-06 23:32:43 +00002; RUN: lli %t.bc > /dev/null
3
Tanya Lattnerceca1942008-03-10 07:21:50 +00004define i32 @bar() {
5 ret i32 0
6}
Chris Lattner67c26392002-12-04 17:35:11 +00007
Tanya Lattnerceca1942008-03-10 07:21:50 +00008define i32 @main() {
9 %r = call i32 @bar( ) ; <i32> [#uses=1]
10 ret i32 %r
Chris Lattner67c26392002-12-04 17:35:11 +000011}
12