llvm-6502/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll
2009-09-09 00:09:15 +00:00

18 lines
318 B
LLVM

; RUN: llc < %s -enable-correct-eh-support
define i32 @test() {
unwind
}
define i32 @main() {
%X = invoke i32 @test( )
to label %cont unwind label %EH ; <i32> [#uses=0]
cont: ; preds = %0
ret i32 1
EH: ; preds = %0
ret i32 0
}