blob: 641787b0d7f24cfc7130330a1b2ed63339b61833 [file] [log] [blame]
Peter Collingbourneabd820a2018-10-23 21:23:18 +00001; RUN: llc -o - %s | FileCheck %s
2
3; CHECK: .LBB0_1:
4; CHECK: b .LBB0_1
5
6target triple = "thumbv8m-unknown-linux-android"
7
8define void @d(i32* %c) {
9entry:
10 br i1 false, label %f.exit, label %i.d
11
12i.d:
13 br label %i.d
14
15f.exit:
16 %0 = getelementptr i32, i32* %c, i32 57
17 br label %if.g
18
19if.g:
20 store i32 0, i32* %0
21 ret void
22}