[llvm-commits] CVS: llvm/test/Analysis/ScalarEvolution/trip-count.ll

Reid Spencer reid at x10sys.com
Tue Jan 30 08:16:36 PST 2007



Changes in directory llvm/test/Analysis/ScalarEvolution:

trip-count.ll updated: 1.2 -> 1.3
---
Log message:

For PR411: http://llvm.org/PR411 :
Update these tests to not use the same name even though the type of the
value differs. After PR411: http://llvm.org/PR411  hits, type planes will be gone and it will be
illegal for a name to be used twice, regardless of type.


---
Diffs of the changes:  (+2 -4)

 trip-count.ll |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)


Index: llvm/test/Analysis/ScalarEvolution/trip-count.ll
diff -u llvm/test/Analysis/ScalarEvolution/trip-count.ll:1.2 llvm/test/Analysis/ScalarEvolution/trip-count.ll:1.3
--- llvm/test/Analysis/ScalarEvolution/trip-count.ll:1.2	Fri Jan 26 02:25:05 2007
+++ llvm/test/Analysis/ScalarEvolution/trip-count.ll	Tue Jan 30 10:16:01 2007
@@ -19,8 +19,8 @@
 
 bb3:            ; preds = %bb, %entry
         %i.0 = phi i32 [ 0, %entry ], [ %tmp2, %bb ]            ; <i32> [#uses=3]
-        %tmp = icmp sle i32 %i.0, 9999          ; <i1> [#uses=1]
-        br i1 %tmp, label %bb, label %bb5
+        %tmp3 = icmp sle i32 %i.0, 9999          ; <i1> [#uses=1]
+        br i1 %tmp3, label %bb, label %bb5
 
 bb5:            ; preds = %bb3
         br label %return
@@ -28,5 +28,3 @@
 return:         ; preds = %bb5
         ret void
 }
-
-






More information about the llvm-commits mailing list