diff options
-rw-r--r-- | include/llvm/Analysis/LoopInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index a70194d..21051ad 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -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(); |