Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[oota-llvm.git] / test / Transforms / Inline / basictest.ll
1 ; RUN: opt < %s -inline -disable-output -print-function 2> /dev/null
2
3 define i32 @func(i32 %i) {
4         ret i32 %i
5 }
6
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
11 }
12