forked from OSchip/llvm-project
parent
e02d5da8a7
commit
569dc65a60
|
@ -943,8 +943,9 @@ updateScheduledPressure(const SUnit *SU,
|
|||
unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
|
||||
if (NewMaxPressure[ID] >= Limit - 2) {
|
||||
DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
|
||||
<< NewMaxPressure[ID] << " > " << Limit << "(+ "
|
||||
<< BotRPTracker.getLiveThru()[ID] << " livethru)\n");
|
||||
<< NewMaxPressure[ID]
|
||||
<< ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
|
||||
<< "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue