From: Chris Lattner Date: Wed, 27 Jun 2001 23:30:11 +0000 (+0000) Subject: getBasicBlocks() is not needed anymore for reading Method data X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=776885f34daeffcc814163bf1c6d53b33c99d476;p=oota-llvm.git getBasicBlocks() is not needed anymore for reading Method data git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/IntervalIterator.h b/include/llvm/Analysis/IntervalIterator.h index 60155022aa4..e3c2d08de89 100644 --- a/include/llvm/Analysis/IntervalIterator.h +++ b/include/llvm/Analysis/IntervalIterator.h @@ -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!"); } }