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