[polly] r310999 - [ScopInfo] Clarify comment. NFC.

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 16 02:28:02 PDT 2017


Author: meinersbur
Date: Wed Aug 16 02:28:02 2017
New Revision: 310999

URL: http://llvm.org/viewvc/llvm-project?rev=310999&view=rev
Log:
[ScopInfo] Clarify comment. NFC.

Contributed-by: Nandini Singhal <cs15mtech01004 at iith.ac.in>

Differential Revision: https://reviews.llvm.org/D36760

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=310999&r1=310998&r2=310999&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Wed Aug 16 02:28:02 2017
@@ -1281,7 +1281,7 @@ private:
   /// The closest loop that contains this statement.
   Loop *SurroundingLoop;
 
-  /// Vector for Instructions in a BB.
+  /// Vector for Instructions in this statement.
   std::vector<Instruction *> Instructions;
 
   /// Build the statement.
@@ -2181,7 +2181,7 @@ private:
   ///
   /// @param BB              The basic block we build the statement for.
   /// @param SurroundingLoop The loop the created statement is contained in.
-  /// @param Instructions    The instructions in the basic block.
+  /// @param Instructions    The instructions in the statement.
   void addScopStmt(BasicBlock *BB, Loop *SurroundingLoop,
                    std::vector<Instruction *> Instructions);
 




More information about the llvm-commits mailing list