mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 06:06:27 +00:00
14 lines
185 B
Plaintext
14 lines
185 B
Plaintext
|
; RUN: llvm-as < %s | lli -enable-correct-eh-support
|
||
|
|
||
|
int %test() {
|
||
|
unwind
|
||
|
}
|
||
|
|
||
|
int %main() {
|
||
|
%X = invoke int %test() to label %cont except label %EH
|
||
|
cont:
|
||
|
ret int 1
|
||
|
EH:
|
||
|
ret int 0
|
||
|
}
|