[polly] r259503 - Sort analysis members and unifiy documentation [NFC]
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 2 06:15:37 PST 2016
Author: jdoerfert
Date: Tue Feb 2 08:15:37 2016
New Revision: 259503
URL: http://llvm.org/viewvc/llvm-project?rev=259503&view=rev
Log:
Sort analysis members and unifiy documentation [NFC]
Modified:
polly/trunk/include/polly/ScopInfo.h
Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=259503&r1=259502&r2=259503&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Tue Feb 2 08:15:37 2016
@@ -1893,24 +1893,24 @@ class ScopInfo : public RegionPass {
ScopInfo(const ScopInfo &) = delete;
const ScopInfo &operator=(const ScopInfo &) = delete;
- // The ScalarEvolution to help building Scop.
- ScalarEvolution *SE;
-
- // LoopInfo for information about loops
- LoopInfo *LI;
-
- // The AliasAnalysis to build AliasSetTracker.
+ /// @brief The AliasAnalysis to build AliasSetTracker.
AliasAnalysis *AA;
- // Valid Regions for Scop
- ScopDetection *SD;
-
- // Target data for element size computing.
+ /// @brief Target data for element size computing.
const DataLayout *DL;
- // DominatorTree to reason about guaranteed execution.
+ /// @brief DominatorTree to reason about guaranteed execution.
DominatorTree *DT;
+ /// @brief LoopInfo for information about loops
+ LoopInfo *LI;
+
+ /// @biref Valid Regions for Scop
+ ScopDetection *SD;
+
+ /// @brief The ScalarEvolution to help building Scop.
+ ScalarEvolution *SE;
+
// Access function of statements (currently BasicBlocks) .
//
// This owns all the MemoryAccess objects of the Scop created in this pass. It
More information about the llvm-commits
mailing list