blob: 78fc3144aab01808fd37b612c8a31bfd63b60582 [file] [log] [blame]
Gabor Greif5edf2102008-05-20 22:07:21 +00001; RUN: llvm-as %s -f -o %t.bc
Tanya Lattnere9789ef2004-11-06 23:32:43 +00002; RUN: lli %t.bc > /dev/null
3
Tanya Lattnerceca1942008-03-10 07:21:50 +00004define i32 @main() {
5; <label>:0
Chris Lattner84b72072002-12-13 12:10:16 +00006 br label %Loop
Tanya Lattnerceca1942008-03-10 07:21:50 +00007Loop: ; preds = %Loop, %0
8 %I = phi i32 [ 0, %0 ], [ %i2, %Loop ] ; <i32> [#uses=1]
9 %i2 = add i32 %I, 1 ; <i32> [#uses=2]
10 %C = icmp eq i32 %i2, 10 ; <i1> [#uses=1]
11 br i1 %C, label %Out, label %Loop
12Out: ; preds = %Loop
13 ret i32 0
Chris Lattner84b72072002-12-13 12:10:16 +000014}
Tanya Lattnerceca1942008-03-10 07:21:50 +000015