1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Transforms/Inline/2003-09-22-PHINodesInNormalInvokeDest.ll
Bill Wendling e20714f292 Update some EH tests that were violating the new EH model.
The landingpad instruction needs to be the first non-PHI instruction in the
unwind destination block.

llvm-svn: 177650
2013-03-21 18:30:10 +00:00

26 lines
654 B
LLVM

; RUN: opt < %s -inline -disable-output
define i32 @main() {
entry:
invoke void @__main( )
to label %else unwind label %RethrowExcept
else: ; preds = %LJDecisionBB, %entry
%i.2 = phi i32 [ 36, %entry ], [ %i.2, %LJDecisionBB ] ; <i32> [#uses=1]
br label %LJDecisionBB
LJDecisionBB: ; preds = %else
br label %else
RethrowExcept: ; preds = %entry
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
cleanup
ret i32 0
}
define void @__main() {
ret void
}
declare i32 @__gxx_personality_v0(...)