diff options
author | Michael Kruse <llvm@meinersbur.de> | 2017-08-16 09:28:02 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2017-08-16 09:28:02 +0000 |
commit | 91e55322b9930b6f2a1b439a1fa99f4f9ba90d4e (patch) | |
tree | 20fda8840097033748bb9fe2a9596591d124d7ef | |
parent | aa33e74f4b430bc764fe83901a533215d001da6f (diff) | |
download | bcm5719-llvm-91e55322b9930b6f2a1b439a1fa99f4f9ba90d4e.tar.gz bcm5719-llvm-91e55322b9930b6f2a1b439a1fa99f4f9ba90d4e.zip |
[ScopInfo] Clarify comment. NFC.
Contributed-by: Nandini Singhal <cs15mtech01004@iith.ac.in>
Differential Revision: https://reviews.llvm.org/D36760
llvm-svn: 310999
-rw-r--r-- | polly/include/polly/ScopInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/include/polly/ScopInfo.h b/polly/include/polly/ScopInfo.h index 96f909ef432..07ac3f7d137 100644 --- a/polly/include/polly/ScopInfo.h +++ b/polly/include/polly/ScopInfo.h @@ -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); |