mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use the enum value for RegClassIDs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135816 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e78085a3c0
commit
256535f136
@ -328,8 +328,10 @@ RegisterInfoEmitter::runMCDesc(raw_ostream &OS, CodeGenTarget &Target,
|
||||
|
||||
for (unsigned rc = 0, e = RegisterClasses.size(); rc != e; ++rc) {
|
||||
const CodeGenRegisterClass &RC = RegisterClasses[rc];
|
||||
OS << " MCRegisterClass("
|
||||
<< rc << ", "
|
||||
OS << " MCRegisterClass(";
|
||||
if (!RC.Namespace.empty())
|
||||
OS << RC.Namespace << "::";
|
||||
OS << RC.getName() + "RegClassID" << ", "
|
||||
<< '\"' << RC.getName() << "\", "
|
||||
<< RC.SpillSize/8 << ", "
|
||||
<< RC.SpillAlignment/8 << ", "
|
||||
|
Loading…
x
Reference in New Issue
Block a user