llvm-6502/test/CodeGen/X86/2004-02-08-UnwindSupport.llx
2004-02-08 19:40:58 +00:00

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
}