aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/ScalarEvolutionExpressions.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-04-29 00:59:03 +0000
committerDan Gohman <gohman@apple.com>2009-04-29 00:59:03 +0000
commite16f0f93ffd4d6f54430a33a9e998b947a9ef7e8 (patch)
tree5cc7bebb119568b3ebad2d5402e8fbdabeee63e5 /include/llvm/Analysis/ScalarEvolutionExpressions.h
parentb10cd051c0c00bac2eee2744bdc5de42a5ef8842 (diff)
downloadexternal_llvm-e16f0f93ffd4d6f54430a33a9e998b947a9ef7e8.zip
external_llvm-e16f0f93ffd4d6f54430a33a9e998b947a9ef7e8.tar.gz
external_llvm-e16f0f93ffd4d6f54430a33a9e998b947a9ef7e8.tar.bz2
Add some more doxygen comments to SCEVAddRec.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/ScalarEvolutionExpressions.h')
-rw-r--r--include/llvm/Analysis/ScalarEvolutionExpressions.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpressions.h b/include/llvm/Analysis/ScalarEvolutionExpressions.h
index d94a9eb..00cc40e 100644
--- a/include/llvm/Analysis/ScalarEvolutionExpressions.h
+++ b/include/llvm/Analysis/ScalarEvolutionExpressions.h
@@ -357,7 +357,10 @@ namespace llvm {
//===--------------------------------------------------------------------===//
/// SCEVAddRecExpr - This node represents a polynomial recurrence on the trip
- /// count of the specified loop.
+ /// count of the specified loop. This is the primary focus of the
+ /// ScalarEvolution framework; all the other SCEV subclasses are mostly just
+ /// supporting infrastructure to allow SCEVAddRecExpr expressions to be
+ /// created and analyzed.
///
/// All operands of an AddRec are required to be loop invariant.
///