mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
10 lines
171 B
LLVM
10 lines
171 B
LLVM
|
; 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
|
||
|
}
|