mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
11 lines
189 B
LLVM
11 lines
189 B
LLVM
|
; Do not remove the invoke!
|
||
|
;
|
||
|
; RUN: as < %s | opt -simplifycfg | dis | grep invoke
|
||
|
|
||
|
int %test() {
|
||
|
invoke int %test() to label %Ret except label %Ret
|
||
|
Ret:
|
||
|
%A = add int 0, 1
|
||
|
ret int %A
|
||
|
}
|