mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-22 10:16:43 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8513 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
069f930a3b
commit
8791761056
20
test/Transforms/Inline/2003-09-14-InlineValue.ll
Normal file
20
test/Transforms/Inline/2003-09-14-InlineValue.ll
Normal file
@ -0,0 +1,20 @@
|
||||
; 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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user