git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Wojciech Matyjewicz 2008-01-04 20:04:08 +00:00
parent 21a715a124
commit b670a1737b

View File

@ -88,7 +88,7 @@ public:
BlockT *getHeader() const { return Blocks.front(); }
LoopBase<BlockT> *getParentLoop() const { return ParentLoop; }
/// contains - Return true of the specified basic block is in this loop
/// contains - Return true if the specified basic block is in this loop
///
bool contains(const BlockT *BB) const {
return std::find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();