Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / Inline / 2004-10-17-InlineFunctionWithoutReturn.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -inline -disable-output
2
3 int %test() {
4         unwind
5 }
6
7 int %caller() {
8         %X = call int %test()
9         ret int %X
10 }