mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01: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
|
||
|
}
|