[polly] r270420 - Add missing doxygen comments [NFC]
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Mon May 23 05:36:45 PDT 2016
Author: jdoerfert
Date: Mon May 23 07:36:44 2016
New Revision: 270420
URL: http://llvm.org/viewvc/llvm-project?rev=270420&view=rev
Log:
Add missing doxygen comments [NFC]
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=270420&r1=270419&r2=270420&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Mon May 23 07:36:44 2016
@@ -2053,6 +2053,7 @@ public:
const_reverse_iterator rend() const { return Stmts.rend(); }
//@}
+ /// @brief Return the set of required invariant loads.
const InvariantLoadsSetTy &getRequiredInvariantLoads() const {
return DC.RequiredILS;
}
@@ -2065,8 +2066,10 @@ public:
return getRequiredInvariantLoads().count(LI);
}
+ /// @brief Return the set of boxed (thus overapproximated) loops.
const BoxedLoopsSetTy &getBoxedLoops() const { return DC.BoxedLoopsSet; }
+ /// @brief Return true if and only if @p R is a non-affine subregion.
bool isNonAffineSubRegion(const Region *R) {
return DC.NonAffineSubRegionSet.count(R);
}
More information about the llvm-commits
mailing list