diff options
author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2016-02-02 14:15:37 +0000 |
---|---|---|
committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2016-02-02 14:15:37 +0000 |
commit | e0de09682e118af3dc1c0874ba4a2104564e108d (patch) | |
tree | d9e38513c93cd01c5dbe37d69bcbdf10026ab8a6 | |
parent | a1f291ed1845c18dc10a8cf2945c88f0b27652dd (diff) | |
download | bcm5719-llvm-e0de09682e118af3dc1c0874ba4a2104564e108d.tar.gz bcm5719-llvm-e0de09682e118af3dc1c0874ba4a2104564e108d.zip |
Sort analysis members and unifiy documentation [NFC]
llvm-svn: 259503
-rw-r--r-- | polly/include/polly/ScopInfo.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/polly/include/polly/ScopInfo.h b/polly/include/polly/ScopInfo.h index 154bbeacbcf..7d840a5b5dc 100644 --- a/polly/include/polly/ScopInfo.h +++ b/polly/include/polly/ScopInfo.h @@ -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 |