summaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll
blob: 4a80d37c09746f140d3416aa556f84da966a8dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: opt < %s -inline -disable-output

define i32 @reload() {
reloadentry:
        br label %A

A:              ; preds = %reloadentry
        call void @callee( )
        ret i32 0
}

define internal void @callee() {
entry:
        %X = alloca i8, i32 0           ; <i8*> [#uses=0]
        %Y = bitcast i32 0 to i32               ; <i32> [#uses=1]
        %Z = alloca i8, i32 %Y          ; <i8*> [#uses=0]
        ret void
}

OpenPOWER on IntegriCloud