blob: f34d1648a701ab6dfb78269d1f52b3579a96ce3a [file] [log] [blame]
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00001; RUN: llvm-as < %s | opt -inline -disable-output -print
Chris Lattnerf4976402002-06-24 17:46:05 +00002
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00003define i32 @func(i32 %i) {
4 ret i32 %i
Chris Lattnerf4976402002-06-24 17:46:05 +00005}
6
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00007define i32 @main(i32 %argc) {
8 %X = call i32 @func( i32 7 ) ; <i32> [#uses=1]
9 %Y = add i32 %X, %argc ; <i32> [#uses=1]
10 ret i32 %Y
Chris Lattnerf4976402002-06-24 17:46:05 +000011}
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000012