summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll
blob: 393062abf78e1ec01fee250a188153c929d738c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; 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
}

OpenPOWER on IntegriCloud