mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
3814fc9f08
llvm-svn: 17698
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
|
|
}
|