2003-08-24 17:58:24 +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.
|
|
|
|
|
|
|
|
; If this test is successful, the function should be reduced to 'call; ret'
|
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | \
|
2007-04-15 09:21:47 +00:00
|
|
|
; RUN: not egrep {\\(invoke\\)|\\(br\\)}
|
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
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test() {
|
|
|
|
invoke void @bar( )
|
|
|
|
to label %Ok unwind label %Rethrow
|
|
|
|
Ok: ; preds = %0
|
|
|
|
ret i32 0
|
|
|
|
Rethrow: ; preds = %0
|
|
|
|
unwind
|
2003-08-24 17:58:24 +00:00
|
|
|
}
|