forked from OSchip/llvm-project
[TableGen] Dump RC.AllocationPriority with -register-info-debug
This commit is contained in:
parent
69c66bb211
commit
fb571719d5
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue