forked from OSchip/llvm-project
Allow const bb's to be checked for containment in a loop
llvm-svn: 2754
This commit is contained in:
parent
194138cd08
commit
e7779b56a0
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue