[llvm-commits] CVS: llvm/test/Regression/Transforms/IndVarsSimplify/tripcount_infinite.llx

Reid Spencer reid at x10sys.com
Fri Dec 22 22:06:58 PST 2006



Changes in directory llvm/test/Regression/Transforms/IndVarsSimplify:

tripcount_infinite.llx updated: 1.4 -> 1.5
---
Log message:

For PR950: http://llvm.org/PR950 :
This patch removes the SetCC instructions and replaces them with the ICmp
and FCmp instructions. The SetCondInst instruction has been removed and 
been replaced with ICmpInst and FCmpInst.


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

 tripcount_infinite.llx |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/Regression/Transforms/IndVarsSimplify/tripcount_infinite.llx
diff -u llvm/test/Regression/Transforms/IndVarsSimplify/tripcount_infinite.llx:1.4 llvm/test/Regression/Transforms/IndVarsSimplify/tripcount_infinite.llx:1.5
--- llvm/test/Regression/Transforms/IndVarsSimplify/tripcount_infinite.llx:1.4	Mon Dec 18 20:17:23 2006
+++ llvm/test/Regression/Transforms/IndVarsSimplify/tripcount_infinite.llx	Sat Dec 23 00:05:41 2006
@@ -1,8 +1,8 @@
 ; These tests have an infinite trip count.  We obviously shouldn't remove the 
 ; loops!  :)
 ;
-; RUN: llvm-upgrade < %s | llvm-as | opt -indvars -adce -simplifycfg | llvm-dis | grep set | wc -l > %t2
-; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | grep set | wc -l > %t1
+; RUN: llvm-upgrade < %s | llvm-as | opt -indvars -adce -simplifycfg | llvm-dis | grep icmp | wc -l > %t2
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | grep icmp | wc -l > %t1
 ; RUN: diff %t1 %t2
 
 int %infinite_linear() {   ;; test for (i = 1; i != 100; i += 2)






More information about the llvm-commits mailing list