mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
13 lines
202 B
LLVM
13 lines
202 B
LLVM
|
|
||
|
declare int %callee(int, int)
|
||
|
|
||
|
|
||
|
int %test(int %X) {
|
||
|
%A = invoke int %callee(int %X, int 5) to label %Ok except label %Threw
|
||
|
Ok:
|
||
|
%B = phi int [%A, %0], [-1, %Threw]
|
||
|
ret int %A
|
||
|
Threw:
|
||
|
br label %Ok
|
||
|
}
|