mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
448 B
LLVM
18 lines
448 B
LLVM
; 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'
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | not egrep 'invoke|br'
|
|
|
|
declare void %bar()
|
|
|
|
int %test() {
|
|
invoke void %bar() to label %Ok except label %Rethrow
|
|
Ok:
|
|
ret int 0
|
|
Rethrow:
|
|
unwind
|
|
}
|
|
|