Fix a README item: when doing a comparison with the result
[oota-llvm.git] / test / Transforms / LICM / basictest.ll
index 6458f035c2e5b4ffa30b04a140218dccf33328b5..1dbb4dc6b4993350ae2f4bf093da0b7b4f5f3867 100644 (file)
@@ -1,17 +1,15 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis
-
-void "testfunc"(int %i) {
+; RUN: opt < %s -licm | llvm-dis
 
+define void @testfunc(i32 %i) {
+; <label>:0
        br label %Loop
-
-Loop:
-       %j = phi uint [0, %0], [%Next, %Loop]
-       %i = cast int %i to uint
-       %i2 = mul uint %i, 17
-       %Next = add uint %j, %i2
-       %cond = seteq uint %Next, 0
-       br bool %cond, label %Out, label %Loop
-
-Out:
+Loop:          ; preds = %Loop, %0
+       %j = phi i32 [ 0, %0 ], [ %Next, %Loop ]                ; <i32> [#uses=1]
+       %i2 = mul i32 %i, 17            ; <i32> [#uses=1]
+       %Next = add i32 %j, %i2         ; <i32> [#uses=2]
+       %cond = icmp eq i32 %Next, 0            ; <i1> [#uses=1]
+       br i1 %cond, label %Out, label %Loop
+Out:           ; preds = %Loop
        ret void
 }
+