[Refactor] Adjust some comments
authorJohannes Doerfert <jdoerfert@codeaurora.org>
Tue, 29 Jul 2014 09:16:55 +0000 (09:16 +0000)
committerJohannes Doerfert <jdoerfert@codeaurora.org>
Tue, 29 Jul 2014 09:16:55 +0000 (09:16 +0000)
llvm-svn: 214171

polly/include/polly/Dependences.h

index 240bb7c..56f864d 100755 (executable)
@@ -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);
 };