diff options
| author | Tobias Grosser <tobias@grosser.es> | 2015-02-19 14:28:36 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2015-02-19 14:28:36 +0000 |
| commit | c56dcd52be9668def76f2ba4c5ef33b0c900fad6 (patch) | |
| tree | 08a820bf77ab96535aa626055cf9669465ed529c | |
| parent | 352eba1c29202cdb783fd1209a2a8efe4eaa49f2 (diff) | |
| download | bcm5719-llvm-c56dcd52be9668def76f2ba4c5ef33b0c900fad6.tar.gz bcm5719-llvm-c56dcd52be9668def76f2ba4c5ef33b0c900fad6.zip | |
Add missing comments to member variables
Reported-by: Johannes Doerfert
llvm-svn: 229854
| -rw-r--r-- | polly/include/polly/ScopDetection.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/polly/include/polly/ScopDetection.h b/polly/include/polly/ScopDetection.h index c867c71049c..fa425c4c4e1 100644 --- a/polly/include/polly/ScopDetection.h +++ b/polly/include/polly/ScopDetection.h @@ -156,7 +156,10 @@ private: SetVector<const SCEVUnknown *> NonAffineAccesses; BaseToElSize ElementSize; + /// @brief The region has at least one load instruction. bool hasLoads; + + /// @brief The region has at least one store instruction. bool hasStores; DetectionContext(Region &R, AliasAnalysis &AA, bool Verify) |

