mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 13:21:30 +00:00
a5db9cbefd
llvm-svn: 140094
16 lines
340 B
LLVM
16 lines
340 B
LLVM
; RUN: opt < %s -extract-blocks -disable-output
|
|
define i32 @foo() {
|
|
br label %EB
|
|
|
|
EB: ; preds = %0
|
|
%V = invoke i32 @foo( )
|
|
to label %Cont unwind label %Unw ; <i32> [#uses=1]
|
|
|
|
Cont: ; preds = %EB
|
|
ret i32 %V
|
|
|
|
Unw: ; preds = %EB
|
|
unwind
|
|
}
|
|
|