[llvm-commits] CVS: llvm/test/Transforms/IndVarsSimplify/2007-01-06-TripCount.ll
Reid Spencer
reid at x10sys.com
Tue Jan 30 08:16:36 PST 2007
Changes in directory llvm/test/Transforms/IndVarsSimplify:
2007-01-06-TripCount.ll updated: 1.4 -> 1.5
---
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: (+3 -3)
2007-01-06-TripCount.ll | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/test/Transforms/IndVarsSimplify/2007-01-06-TripCount.ll
diff -u llvm/test/Transforms/IndVarsSimplify/2007-01-06-TripCount.ll:1.4 llvm/test/Transforms/IndVarsSimplify/2007-01-06-TripCount.ll:1.5
--- llvm/test/Transforms/IndVarsSimplify/2007-01-06-TripCount.ll:1.4 Fri Jan 26 02:25:06 2007
+++ llvm/test/Transforms/IndVarsSimplify/2007-01-06-TripCount.ll Tue Jan 30 10:16:01 2007
@@ -26,9 +26,9 @@
br label %bb
cond_next: ; preds = %bb2
- %tmp = getelementptr [5 x i8]* @foo, i32 0, i32 %i.0 ; <i8*> [#uses=1]
- %tmp = load i8* %tmp ; <i8> [#uses=1]
- %tmp5 = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
+ %tmp2 = getelementptr [5 x i8]* @foo, i32 0, i32 %i.0 ; <i8*> [#uses=1]
+ %tmp3 = load i8* %tmp2 ; <i8> [#uses=1]
+ %tmp5 = icmp eq i8 %tmp3, 0 ; <i1> [#uses=1]
br i1 %tmp5, label %bb6, label %bb
bb6: ; preds = %cond_next
More information about the llvm-commits
mailing list