Allow const bb's to be checked for containment in a loop

llvm-svn: 2754
This commit is contained in:
Chris Lattner 2002-06-03 22:10:48 +00:00
parent 194138cd08
commit e7779b56a0
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public:
inline BasicBlock *getHeader() const { return Blocks.front(); }
// contains - Return true of the specified basic block is in this loop
bool contains(BasicBlock *BB) const;
bool contains(const BasicBlock *BB) const;
// getSubLoops - Return the loops contained entirely within this loop
inline const std::vector<Loop*> &getSubLoops() const { return SubLoops; }