1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-04 21:31:03 +00:00
llvm-6502/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll
2003-09-16 15:29:54 +00:00

10 lines
176 B
LLVM

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