*** empty log message ***

llvm-svn: 2755
This commit is contained in:
Chris Lattner 2002-06-03 22:10:52 +00:00
parent e7779b56a0
commit 2db70cea7c
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ AnalysisID LoopInfo::ID(AnalysisID::create<LoopInfo>(), true);
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// Loop implementation // Loop implementation
// //
bool Loop::contains(BasicBlock *BB) const { bool Loop::contains(const BasicBlock *BB) const {
return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end(); return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
} }