Ignore stderr for some more tests that expect warnings there.
[oota-llvm.git] / test / Transforms / TailCallElim / trivial_codegen_tailcall.ll
1 ; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | \
2 ; RUN:    grep {tail call void @foo}
3
4
5 declare void @foo()
6
7 define void @bar() {
8         call void @foo( )
9         ret void
10 }
11