summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-19 02:17:23 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-19 02:17:23 +0000
commit0b985dc84a457225033f5276e53f618d815d74ae (patch)
treeaf62b74307b7ced97a62d2b14f8a63c76665203a /test
parentf2315900fdd45cb6d485d341f79334834bec5dc4 (diff)
downloadllvm-0b985dc84a457225033f5276e53f618d815d74ae.tar.gz
llvm-0b985dc84a457225033f5276e53f618d815d74ae.tar.bz2
llvm-0b985dc84a457225033f5276e53f618d815d74ae.tar.xz
Back out last revision, a bit premature, its not an upgrade-only change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/IndVarsSimplify/tripcount_infinite.llx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/IndVarsSimplify/tripcount_infinite.llx b/test/Transforms/IndVarsSimplify/tripcount_infinite.llx
index 8a7b27c3b2..d20e85532a 100644
--- a/test/Transforms/IndVarsSimplify/tripcount_infinite.llx
+++ b/test/Transforms/IndVarsSimplify/tripcount_infinite.llx
@@ -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 icmp | wc -l > %t2
-; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | grep icmp | wc -l > %t1
+; 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: diff %t1 %t2
int %infinite_linear() { ;; test for (i = 1; i != 100; i += 2)