summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/2005-04-09-GlobalInPHI.ll
blob: 353e411b08871e6525abffac5b6e333018554aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s 
        %struct.TypHeader = type { i32, %struct.TypHeader**, [3 x i8], i8 }
@.str_67 = external global [4 x i8]             ; <[4 x i8]*> [#uses=1]
@.str_87 = external global [17 x i8]            ; <[17 x i8]*> [#uses=1]

define void @PrBinop() {
entry:
        br i1 false, label %cond_true, label %else.0

cond_true:              ; preds = %entry
        br label %else.0

else.0:         ; preds = %cond_true, %entry
        %tmp.167.1 = phi i32 [ ptrtoint ([17 x i8]* @.str_87 to i32), %entry ], [ 0, %cond_true ]               ; <i32> [#uses=0]
        call void @Pr( i8* getelementptr ([4 x i8]* @.str_67, i32 0, i32 0), i32 0, i32 0 )
        ret void
}

declare void @Pr(i8*, i32, i32)