llvm-6502/test/Transforms/Inline/2003-09-14-InlineValue.ll
Chris Lattner 8791761056 New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8513 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-15 02:07:37 +00:00

21 lines
294 B
LLVM

; RUN: llvm-as < %s | opt -inline -disable-output
declare int %External()
implementation
internal int %Callee() {
%I = call int %External()
%J = add int %I, %I
ret int %J
}
int %Caller() {
%V = invoke int %Callee() to label %Ok except label %Bad
Ok:
ret int %V
Bad:
ret int 0
}