llvm-6502/test/Transforms/Inline/2004-10-17-InlineFunctionWithoutReturn.ll

11 lines
129 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -inline -disable-output
int %test() {
unwind
}
int %caller() {
%X = call int %test()
ret int %X
}