blob: 10d40693d8e5684785e0cffc0bcc67da174ccfc1 [file] [log] [blame]
Tanya Lattner53a66d12008-02-19 01:41:04 +00001; RUN: llvm-as < %s | llc -enable-correct-eh-support
John Criswelleb853a42005-10-19 18:51:07 +00002
Tanya Lattner53a66d12008-02-19 01:41:04 +00003define i32 @test() {
4 unwind
John Criswelleb853a42005-10-19 18:51:07 +00005}
6
Tanya Lattner53a66d12008-02-19 01:41:04 +00007define i32 @main() {
8 %X = invoke i32 @test( )
9 to label %cont unwind label %EH ; <i32> [#uses=0]
10
11cont: ; preds = %0
12 ret i32 1
13
14EH: ; preds = %0
15 ret i32 0
John Criswelleb853a42005-10-19 18:51:07 +000016}
Tanya Lattner53a66d12008-02-19 01:41:04 +000017