[polly] r229854 - Add missing comments to member variables
Tobias Grosser
tobias at grosser.es
Thu Feb 19 06:28:36 PST 2015
Author: grosser
Date: Thu Feb 19 08:28:36 2015
New Revision: 229854
URL: http://llvm.org/viewvc/llvm-project?rev=229854&view=rev
Log:
Add missing comments to member variables
Reported-by: Johannes Doerfert
Modified:
polly/trunk/include/polly/ScopDetection.h
Modified: polly/trunk/include/polly/ScopDetection.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopDetection.h?rev=229854&r1=229853&r2=229854&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopDetection.h (original)
+++ polly/trunk/include/polly/ScopDetection.h Thu Feb 19 08:28:36 2015
@@ -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)
More information about the llvm-commits
mailing list