Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / Transforms / Inline / inline_dce.ll
blob5143d0249421c30d2eed2b959c28f8a8d0669e15
1 ; This checks to ensure that the inline pass deletes functions if they get 
2 ; inlined into all of their callers.
4 ; RUN: opt < %s -inline -S | \
5 ; RUN:   not grep @reallysmall
7 define internal i32 @reallysmall(i32 %A) {
8         ret i32 %A
11 define void @caller1() {
12         call i32 @reallysmall( i32 5 )          ; <i32>:1 [#uses=0]
13         ret void
16 define void @caller2(i32 %A) {
17         call i32 @reallysmall( i32 %A )         ; <i32>:1 [#uses=0]
18         ret void
21 define i32 @caller3(i32 %A) {
22         %B = call i32 @reallysmall( i32 %A )            ; <i32> [#uses=1]
23         ret i32 %B