aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/breakinthemiddle.ll
blob: 38ca96b423037c84dc28e01aaaf11cb2eb50d081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@.str = private constant [15 x i8] c"hello, world!\0A\00", align 1 ; [#uses=1]

define linkonce_odr i32* @main() align 2 {
  %199 = trunc i8 1 to i1                        ; [#uses=1]
  br i1 %199, label %555, label %569

; <label>:555                                     ; preds = %353
  br label %569
                                                  ; No predecessors!
  br label %569

; <label>:569                                     ; preds = %555
  %333 = call i32 @printf(i8* getelementptr inbounds ([15 x i8]* @.str, i32 0, i32 0)) ; [#uses=0]
  ret i32 0
}

declare i32 @printf(i8*)