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 0bda227de5
commit df93760653

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!");
}
}