2009-09-12 02:01:28 +08:00
|
|
|
; RUN: opt < %s -prune-eh -S | not grep invoke
|
2003-08-31 10:38:46 +08:00
|
|
|
|
2015-06-18 04:52:32 +08:00
|
|
|
define internal i32 @foo() personality i32 (...)* @__gxx_personality_v0 {
|
2008-03-19 13:39:35 +08:00
|
|
|
invoke i32 @foo( )
|
|
|
|
to label %Normal unwind label %Except ; <i32>:1 [#uses=0]
|
|
|
|
Normal: ; preds = %0
|
|
|
|
ret i32 12
|
|
|
|
Except: ; preds = %0
|
2015-06-18 04:52:32 +08:00
|
|
|
landingpad { i8*, i32 }
|
2015-02-11 10:06:47 +08:00
|
|
|
catch i8* null
|
2008-03-19 13:39:35 +08:00
|
|
|
ret i32 123
|
2003-08-31 10:38:46 +08:00
|
|
|
}
|
|
|
|
|
2015-06-18 04:52:32 +08:00
|
|
|
define i32 @caller() personality i32 (...)* @__gxx_personality_v0 {
|
2008-03-19 13:39:35 +08:00
|
|
|
invoke i32 @foo( )
|
|
|
|
to label %Normal unwind label %Except ; <i32>:1 [#uses=0]
|
|
|
|
Normal: ; preds = %0
|
|
|
|
ret i32 0
|
|
|
|
Except: ; preds = %0
|
2015-06-18 04:52:32 +08:00
|
|
|
landingpad { i8*, i32 }
|
2015-02-11 10:06:47 +08:00
|
|
|
catch i8* null
|
2008-03-19 13:39:35 +08:00
|
|
|
ret i32 1
|
2003-08-31 10:38:46 +08:00
|
|
|
}
|
2008-03-19 13:39:35 +08:00
|
|
|
|
2015-02-11 10:06:47 +08:00
|
|
|
declare i32 @__gxx_personality_v0(...)
|