[llvm-commits] [llvm] r45595 - /llvm/trunk/include/llvm/Analysis/LoopInfo.h
Wojciech Matyjewicz
wmatyjewicz at fastmail.fm
Fri Jan 4 12:04:08 PST 2008
Author: wmat
Date: Fri Jan 4 14:04:08 2008
New Revision: 45595
URL: http://llvm.org/viewvc/llvm-project?rev=45595&view=rev
Log:
fix typo
Modified:
llvm/trunk/include/llvm/Analysis/LoopInfo.h
Modified: llvm/trunk/include/llvm/Analysis/LoopInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/LoopInfo.h?rev=45595&r1=45594&r2=45595&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/LoopInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/LoopInfo.h Fri Jan 4 14:04:08 2008
@@ -88,7 +88,7 @@
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();
More information about the llvm-commits
mailing list