mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
11 lines
179 B
LLVM
11 lines
179 B
LLVM
|
; RUN: llvm-as < %s | opt -extract-blocks -disable-output
|
||
|
int %foo() {
|
||
|
br label %EB
|
||
|
EB:
|
||
|
%V = invoke int %foo() to label %Cont unwind label %Unw
|
||
|
Cont:
|
||
|
ret int %V
|
||
|
Unw:
|
||
|
unwind
|
||
|
}
|