blob: 393062abf78e1ec01fee250a188153c929d738c2 [file] [log] [blame]
Dan Gohmanc8054d92009-09-09 00:09:15 +00001; RUN: llc < %s -enable-correct-eh-support
John Criswell14582b12005-10-19 18:51:07 +00002
Tanya Lattner3f047732008-02-19 01:41:04 +00003define i32 @test() {
4 unwind
John Criswell14582b12005-10-19 18:51:07 +00005}
6
Tanya Lattner3f047732008-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 Criswell14582b12005-10-19 18:51:07 +000016}
Tanya Lattner3f047732008-02-19 01:41:04 +000017