diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-24 18:55:53 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-24 18:55:53 +0000 |
commit | 46bdfb0e6bb9de86b19562fc52fddefd7014cf73 (patch) | |
tree | a8f92be55af923205fbf9436d25b7544215c44bb /test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll | |
parent | 57f0db833dc30404f1f5d28b23df326e520698ec (diff) |
Rename ScalarEvolution's getIterationCount to getBackedgeTakenCount,
to more accurately describe what it does. Expand its doxygen comment
to describe what the backedge-taken count is and how it differs
from the actual iteration count of the loop. Adjust names and
comments in associated code accordingly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll')
-rw-r--r-- | test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll b/test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll index 26550fd795..76ca4a0847 100644 --- a/test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll +++ b/test/Analysis/ScalarEvolution/SolveQuadraticEquation.ll @@ -1,5 +1,5 @@ ; RUN: llvm-as < %s | opt -analyze -scalar-evolution \ -; RUN: -scalar-evolution-max-iterations=0 | grep {100 iterations} +; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 100} ; PR1101 @A = weak global [1000 x i32] zeroinitializer, align 32 |