1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/Generic/2004-02-08-UnwindSupport.llx
2007-01-17 07:59:14 +00:00

14 lines
200 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | llc -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
}