llvm-6502/test/Transforms/Inline/invoke_test-3.ll
Chris Lattner 93ee3f66ad Fix grep
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8114 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-24 12:53:20 +00:00

31 lines
739 B
LLVM

; Test that any rethrown exceptions in an inlined function are automatically
; turned into branches to the invoke destination.
; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.unwind'
declare void %might_throw()
declare void %llvm.unwind()
implementation
internal int %callee() {
invoke void %might_throw() to label %cont except label %exc
cont:
ret int 0
exc: ; This just rethrows the exception!
call void %llvm.unwind()
ret int 123 ; DEAD!
}
; 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
}