getBasicBlocks() is not needed anymore for reading Method data

llvm-svn: 85
This commit is contained in:
Chris Lattner 2001-06-27 23:30:11 +00:00
parent 608fe88627
commit a32c04fcb1
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ public:
IntervalIterator() {} // End iterator, empty stack
IntervalIterator(Method *M, bool OwnMemory) : IOwnMem(OwnMemory) {
OrigContainer = M;
if (!ProcessInterval(M->getBasicBlocks().front())) {
if (!ProcessInterval(M->front())) {
assert(0 && "ProcessInterval should never fail for first interval!");
}
}