From 776885f34daeffcc814163bf1c6d53b33c99d476 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 27 Jun 2001 23:30:11 +0000 Subject: [PATCH] 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 --- include/llvm/Analysis/IntervalIterator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!"); } } -- 2.34.1