mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
679 B
LLVM
29 lines
679 B
LLVM
; Test that any rethrown exceptions in an inlined function are automatically
|
|
; turned into branches to the invoke destination.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -inline | llvm-dis | not grep unwind$
|
|
|
|
declare void %might_throw()
|
|
|
|
implementation
|
|
|
|
internal int %callee() {
|
|
invoke void %might_throw() to label %cont except label %exc
|
|
cont:
|
|
ret int 0
|
|
exc: ; This just rethrows the exception!
|
|
unwind
|
|
}
|
|
|
|
; caller returns true if might_throw throws an exception... which gets
|
|
; propagated by callee.
|
|
int %caller() {
|
|
%X = invoke int %callee() to label %cont
|
|
except label %Handler
|
|
cont:
|
|
ret int %X
|
|
Handler:
|
|
; This consumes an exception thrown by might_throw
|
|
ret int 1
|
|
}
|