mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
|
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | grep invoke
|
||
|
|
||
|
declare void %External()
|
||
|
|
||
|
implementation
|
||
|
|
||
|
void %foo() {
|
||
|
invoke void %External() to label %Cont except label %Cont
|
||
|
Cont:
|
||
|
ret void
|
||
|
}
|