mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Don't print register names in LiveIntervalUnion::print().
Soon we'll be making LiveIntervalUnions for register units as well. This was the only place using the RepReg member, so just remove it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158038 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -96,7 +96,7 @@ void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
|
||||
Array =
|
||||
static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs));
|
||||
for (unsigned r = 0; r != NRegs; ++r)
|
||||
new(Array + r) LiveIntervalUnion(r, allocator);
|
||||
new(Array + r) LiveIntervalUnion(allocator);
|
||||
}
|
||||
|
||||
void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) {
|
||||
|
Reference in New Issue
Block a user