mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
factor the operand list (and related fields/operations) out of
CodeGenInstruction into its own helper class. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117893 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1763,8 +1763,8 @@ bool ARMDecoderEmitter::ARMDEBackend::populateInstruction(
|
||||
errs() << '\n';
|
||||
|
||||
// Dumps the list of operand info.
|
||||
for (unsigned i = 0, e = CGI.OperandList.size(); i != e; ++i) {
|
||||
CodeGenInstruction::OperandInfo Info = CGI.OperandList[i];
|
||||
for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
|
||||
const CGIOperandList::OperandInfo &Info = CGI.Operands[i];
|
||||
const std::string &OperandName = Info.Name;
|
||||
const Record &OperandDef = *Info.Rec;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user