[TableGen] Dump RC.AllocationPriority with -register-info-debug

This commit is contained in:
Jay Foad 2022-04-26 16:29:06 +01:00
parent 69c66bb211
commit fb571719d5
1 changed files with 1 additions and 0 deletions

View File

@ -1726,6 +1726,7 @@ void RegisterInfoEmitter::debugDump(raw_ostream &OS) {
OS << "\tHasDisjunctSubRegs: " << RC.HasDisjunctSubRegs << '\n';
OS << "\tCoveredBySubRegs: " << RC.CoveredBySubRegs << '\n';
OS << "\tAllocatable: " << RC.Allocatable << '\n';
OS << "\tAllocationPriority: " << unsigned(RC.AllocationPriority) << '\n';
OS << "\tRegs:";
for (const CodeGenRegister *R : RC.getMembers()) {
OS << " " << R->getName();