| ; Test that if an invoked function is inlined, and if that function cannot |
| ; throw, that the dead handler is now unreachable. |
| ; RUN: opt < %s -passes=inline,simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s |
| declare void @might_throw() |
| define internal i32 @callee() personality ptr @__gxx_personality_v0 { |
| invoke void @might_throw() |
| to label %cont unwind label %exc |
| %exn = landingpad {ptr, i32} |
| ; caller returns true if might_throw throws an exception... callee cannot throw. |
| define i32 @caller() personality ptr @__gxx_personality_v0 { |
| ; CHECK-LABEL: define i32 @caller() personality ptr @__gxx_personality_v0 |
| %X = invoke i32 @callee() |
| to label %cont unwind label %UnreachableExceptionHandler |
| ; CHECK: invoke void @might_throw() |
| ; CHECK: to label %[[C:.*]] unwind label %[[E:.*]] |
| ; CHECK: %[[PHI:.*]] = phi i32 |
| ; CHECK: ret i32 %[[PHI]] |
| UnreachableExceptionHandler: |
| ; CHECK-NOT: UnreachableExceptionHandler: |
| %exn = landingpad {ptr, i32} |
| declare i32 @__gxx_personality_v0(...) |