1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Add some more doxygen comments to SCEVAddRec.

llvm-svn: 70354
This commit is contained in:
Dan Gohman 2009-04-29 00:59:03 +00:00
parent 51727d25b2
commit ed64cdeaa2

View File

@ -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.
///