2009-09-12 02:01:28 +08:00
|
|
|
; RUN: opt < %s -prune-eh -S | grep invoke
|
2003-09-15 10:22:35 +08:00
|
|
|
|
2008-03-19 13:39:35 +08:00
|
|
|
declare void @External()
|
2003-09-15 10:22:35 +08:00
|
|
|
|
2008-03-19 13:39:35 +08:00
|
|
|
define void @foo() {
|
|
|
|
invoke void @External( )
|
|
|
|
to label %Cont unwind label %Cont
|
|
|
|
Cont: ; preds = %0, %0
|
2011-09-01 05:04:11 +08:00
|
|
|
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
|
|
|
|
cleanup
|
2003-09-15 10:22:35 +08:00
|
|
|
ret void
|
|
|
|
}
|
2008-03-19 13:39:35 +08:00
|
|
|
|
2011-09-01 05:04:11 +08:00
|
|
|
declare i32 @__gxx_personality_v0(...)
|