mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
IntervalPartition was changed to inherit from vector<Interval*> instead of
contain it so that it would have full iterator access without much work. Writer includes code to print out IntervalPartition's now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -24,7 +24,7 @@ IntervalPartition::~IntervalPartition() {
|
||||
// interval itself (in the IntervalMap).
|
||||
//
|
||||
void IntervalPartition::addIntervalToPartition(Interval *I) {
|
||||
IntervalList.push_back(I);
|
||||
push_back(I);
|
||||
|
||||
// Add mappings for all of the basic blocks in I to the IntervalPartition
|
||||
for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
|
||||
|
Reference in New Issue
Block a user