[polly] r214171 - [Refactor] Adjust some comments

Johannes Doerfert jdoerfert at codeaurora.org
Tue Jul 29 02:16:55 PDT 2014


Author: jdoerfert
Date: Tue Jul 29 04:16:55 2014
New Revision: 214171

URL: http://llvm.org/viewvc/llvm-project?rev=214171&view=rev
Log:
[Refactor] Adjust some comments

Modified:
    polly/trunk/include/polly/Dependences.h

Modified: polly/trunk/include/polly/Dependences.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/Dependences.h?rev=214171&r1=214170&r2=214171&view=diff
==============================================================================
--- polly/trunk/include/polly/Dependences.h (original)
+++ polly/trunk/include/polly/Dependences.h Tue Jul 29 04:16:55 2014
@@ -77,12 +77,12 @@ public:
 
   Dependences();
 
-  // @brief Check if a new scattering is valid.
-  //
-  // @param NewScattering The new scatterings
-  //
-  // @return bool True if the new scattering is valid, false it it reverses
-  //              dependences.
+  /// @brief Check if a new scattering is valid.
+  ///
+  /// @param NewScattering The new scatterings
+  ///
+  /// @return bool True if the new scattering is valid, false it it reverses
+  ///              dependences.
   bool isValidScattering(StatementToIslMapTy *NewScatterings);
 
   /// @brief Check if a partial schedule is parallel wrt to @p Deps.
@@ -111,7 +111,7 @@ public:
   virtual void getAnalysisUsage(AnalysisUsage &AU) const;
 
 private:
-  // The different kinds of dependences we calculate.
+  /// @brief The different kinds of dependences we calculate.
   isl_union_map *RAW;
   isl_union_map *WAR;
   isl_union_map *WAW;
@@ -130,7 +130,7 @@ private:
   /// @brief Calculate and add at the privatization dependences
   void addPrivatizationDependences();
 
-  // @brief Calculate the dependences for a certain SCoP.
+  /// @brief Calculate the dependences for a certain SCoP.
   void calculateDependences(Scop &S);
 };
 





More information about the llvm-commits mailing list