blob: b587259ec69cd0cb1d0441649c52291a268d368e [file] [log] [blame]
Chris Lattner801d9082005-03-06 20:56:55 +00001; RUN: llvm-as < %s | opt -loop-unroll -loopsimplify -disable-output
2
3implementation ; Functions:
4
5void %print_board() {
6entry:
7 br label %no_exit.1
8
9no_exit.1: ; preds = %cond_false.2, %entry
10 br label %no_exit.2
11
12no_exit.2: ; preds = %no_exit.2, %no_exit.1
13 %indvar1 = phi uint [ 0, %no_exit.1 ], [ %indvar.next2, %no_exit.2 ] ; <uint> [#uses=1]
14 %indvar.next2 = add uint %indvar1, 1 ; <uint> [#uses=2]
15 %exitcond3 = setne uint %indvar.next2, 7 ; <bool> [#uses=1]
16 br bool %exitcond3, label %no_exit.2, label %loopexit.2
17
18loopexit.2: ; preds = %no_exit.2
19 br bool false, label %cond_true.2, label %cond_false.2
20
21cond_true.2: ; preds = %loopexit.2
22 ret void
23
24cond_false.2: ; preds = %loopexit.2
25 br bool false, label %no_exit.1, label %loopexit.1
26
27loopexit.1: ; preds = %cond_false.2
28 ret void
29}