mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
e20714f292
The landingpad instruction needs to be the first non-PHI instruction in the unwind destination block. llvm-svn: 177650
23 lines
521 B
LLVM
23 lines
521 B
LLVM
; RUN: opt < %s -inline -disable-output
|
|
|
|
define i32 @main() {
|
|
entry:
|
|
invoke void @__main( )
|
|
to label %LongJmpBlkPost unwind label %LongJmpBlkPre
|
|
|
|
LongJmpBlkPost:
|
|
ret i32 0
|
|
|
|
LongJmpBlkPre:
|
|
%i.3 = phi i32 [ 0, %entry ], [ 0, %entry ] ; <i32> [#uses=0]
|
|
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
|
|
cleanup
|
|
ret i32 0
|
|
}
|
|
|
|
define void @__main() {
|
|
ret void
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|