mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-14 05:42:45 +00:00
pre-RA-sched debug-only fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176638 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b6716187ca
commit
877fcf52d1
@ -1360,8 +1360,10 @@ SUnit *ScheduleDAGRRList::PickNodeToScheduleBottomUp() {
|
||||
SmallVector<unsigned, 4> LRegs;
|
||||
if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
|
||||
break;
|
||||
DEBUG(dbgs() << " Interfering reg " << TRI->getName(LRegs[0])
|
||||
<< " SU #" << CurSU->NodeNum << '\n');
|
||||
DEBUG(dbgs() << " Interfering reg " <<
|
||||
(LRegs[0] == TRI->getNumRegs() ? "CallResource"
|
||||
: TRI->getName(LRegs[0]))
|
||||
<< " SU #" << CurSU->NodeNum << '\n');
|
||||
std::pair<LRegsMapT::iterator, bool> LRegsPair =
|
||||
LRegsMap.insert(std::make_pair(CurSU, LRegs));
|
||||
if (LRegsPair.second) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user