From b670a1737bae5c3ecc65042d3a1b10d774ecd252 Mon Sep 17 00:00:00 2001 From: Wojciech Matyjewicz Date: Fri, 4 Jan 2008 20:04:08 +0000 Subject: [PATCH] fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45595 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/LoopInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index a70194de33e..21051ad61c6 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 *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();