1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Transforms/CodeExtractor/2004-11-12-InvokeExtract.ll
Bill Wendling 19257face9 Update to new EH model.
llvm-svn: 140177
2011-09-20 20:21:16 +00:00

19 lines
513 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
%exn = landingpad { i8*, i32 } personality i32 (...)* @__gcc_personality_v0
catch i8* null
resume { i8*, i32 } %exn
}
declare i32 @__gcc_personality_v0(...)