llvm-6502/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll

10 lines
171 B
LLVM
Raw Normal View History

; Do not remove the invoke!
;
; RUN: as < %s | opt -simplifycfg -disable-output
int %test() {
%A = invoke int %test() to label %Ret except label %Ret
Ret:
ret int %A
}