mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f53462d2ea
commit
87ea294b0d
@ -159,8 +159,9 @@ void ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) {
|
||||
std::map<const Value *, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
|
||||
|
||||
// Keep track of dangling debug references to registers.
|
||||
std::pair<MachineInstr*, unsigned>
|
||||
DanglingDebugValue[TargetRegisterInfo::FirstVirtualRegister];
|
||||
std::vector<std::pair<MachineInstr*, unsigned> >
|
||||
DanglingDebugValue(TRI->getNumRegs(),
|
||||
std::make_pair(static_cast<MachineInstr*>(0), 0));
|
||||
|
||||
// Check to see if the scheduler cares about latencies.
|
||||
bool UnitLatencies = ForceUnitLatencies();
|
||||
@ -172,7 +173,6 @@ void ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) {
|
||||
// Remove any stale debug info; sometimes BuildSchedGraph is called again
|
||||
// without emitting the info from the previous call.
|
||||
DbgValueVec.clear();
|
||||
std::memset(DanglingDebugValue, 0, sizeof(DanglingDebugValue));
|
||||
|
||||
// Walk the list of instructions, from bottom moving up.
|
||||
for (MachineBasicBlock::iterator MII = InsertPos, MIE = Begin;
|
||||
|
Loading…
x
Reference in New Issue
Block a user