Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a ModuleID
[oota-llvm.git] / test / Transforms / Inline / 2004-10-17-InlineFunctionWithoutReturn.ll
1 ; RUN: opt < %s -inline -disable-output
2
3 define i32 @test() {
4         unreachable
5 }
6
7 define i32 @caller() {
8         %X = call i32 @test( )          ; <i32> [#uses=1]
9         ret i32 %X
10 }
11