2009-10-13 18:10:05 +00:00
|
|
|
; RUN: opt < %s -simplifycfg -S | FileCheck %s
|
2003-08-24 17:58:24 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
declare void @bar()
|
2003-08-24 17:58:24 +00:00
|
|
|
|
2009-10-13 18:13:05 +00:00
|
|
|
; This testcase checks to see if the simplifycfg pass is converting invoke
|
|
|
|
; instructions to call instructions if the handler just rethrows the exception.
|
2009-10-13 18:10:05 +00:00
|
|
|
define i32 @test1() {
|
2013-07-14 01:42:54 +00:00
|
|
|
; CHECK-LABEL: @test1(
|
2009-10-13 18:10:05 +00:00
|
|
|
; CHECK-NEXT: call void @bar()
|
|
|
|
; CHECK-NEXT: ret i32 0
|
2008-03-18 03:45:45 +00:00
|
|
|
invoke void @bar( )
|
2010-12-13 05:10:30 +00:00
|
|
|
to label %1 unwind label %Rethrow
|
2008-03-18 03:45:45 +00:00
|
|
|
ret i32 0
|
2010-12-13 05:10:30 +00:00
|
|
|
Rethrow:
|
2011-09-19 22:11:35 +00:00
|
|
|
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
|
|
|
|
catch i8* null
|
|
|
|
resume { i8*, i32 } %exn
|
2003-08-24 17:58:24 +00:00
|
|
|
}
|
2009-10-13 18:13:05 +00:00
|
|
|
|
2011-09-19 22:11:35 +00:00
|
|
|
declare i32 @__gxx_personality_v0(...)
|