[polly] r214166 - [Refactor] Adjust some comments
Johannes Doerfert
jdoerfert at codeaurora.org
Tue Jul 29 01:35:01 PDT 2014
Author: jdoerfert
Date: Tue Jul 29 03:35:00 2014
New Revision: 214166
URL: http://llvm.org/viewvc/llvm-project?rev=214166&view=rev
Log:
[Refactor] Adjust some comments
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=214166&r1=214165&r2=214166&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Tue Jul 29 03:35:00 2014
@@ -142,11 +142,11 @@ private:
void assumeNoOutOfBound(const IRAccess &Access);
public:
- // @brief Create a memory access from an access in LLVM-IR.
- //
- // @param Access The memory access.
- // @param Statement The statement that contains the access.
- // @param SE The ScalarEvolution analysis.
+ /// @brief Create a memory access from an access in LLVM-IR.
+ ///
+ /// @param Access The memory access.
+ /// @param Statement The statement that contains the access.
+ /// @param SE The ScalarEvolution analysis.
MemoryAccess(const IRAccess &Access, const Instruction *AccInst,
ScopStmt *Statement);
@@ -239,7 +239,7 @@ public:
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS,
MemoryAccess::ReductionType RT);
-//===----------------------------------------------------------------------===//
+///===----------------------------------------------------------------------===//
/// @brief Statement of the Scop
///
/// A Scop statement represents an instruction in the Scop.
@@ -460,7 +460,7 @@ static inline raw_ostream &operator<<(ra
return O;
}
-//===----------------------------------------------------------------------===//
+///===----------------------------------------------------------------------===//
/// @brief Static Control Part
///
/// A Scop is the polyhedral representation of a control flow region detected
@@ -722,7 +722,7 @@ static inline raw_ostream &operator<<(ra
return O;
}
-//===---------------------------------------------------------------------===//
+///===---------------------------------------------------------------------===//
/// @brief Build the Polly IR (Scop and ScopStmt) on a Region.
///
class ScopInfo : public RegionPass {
More information about the llvm-commits
mailing list