[TblGen][Scheduling] Fix debug output. NFC

This just moves some newlines to the expected places.
This commit is contained in:
David Green 2020-10-10 10:04:28 +01:00
parent 9909ef292d
commit f2741f2aee
1 changed files with 2 additions and 1 deletions

View File

@ -2189,13 +2189,14 @@ void CodeGenSchedClass::dump(const CodeGenSchedModels* SchedModels) const {
dbgs().indent(10);
}
}
dbgs() << "\n ProcIdx: "; dumpIdxVec(ProcIndices); dbgs() << '\n';
dbgs() << "\n ProcIdx: "; dumpIdxVec(ProcIndices);
if (!Transitions.empty()) {
dbgs() << "\n Transitions for Proc ";
for (const CodeGenSchedTransition &Transition : Transitions) {
dumpIdxVec(Transition.ProcIndices);
}
}
dbgs() << '\n';
}
void PredTransitions::dump() const {