another random update
[llvm/avr.git] / test / Transforms / Inline / basictest.ll
blob6ccd3157c99e7e4fe3d0010253709d9202bfe9c0
1 ; RUN: opt %s -inline -disable-output -print-function 2> /dev/null
3 define i32 @func(i32 %i) {
4         ret i32 %i
7 define 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