Add missing doxygen comments [NFC]

llvm-svn: 270420
This commit is contained in:
Johannes Doerfert 2016-05-23 12:36:44 +00:00
parent eaf34cf67e
commit c553ce50fa
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}