mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Remove unused field from FixedLenDecoderEmitter. Move NumberedInstructions declaration from class to run method since its only used there and was being reinitialized anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152616 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1527,7 +1527,8 @@ void FixedLenDecoderEmitter::run(raw_ostream &o)
|
||||
o << "namespace llvm {\n\n";
|
||||
|
||||
// Parameterize the decoders based on namespace and instruction width.
|
||||
NumberedInstructions = Target.getInstructionsByEnumValue();
|
||||
std::vector<const CodeGenInstruction*> NumberedInstructions =
|
||||
Target.getInstructionsByEnumValue();
|
||||
std::map<std::pair<std::string, unsigned>,
|
||||
std::vector<unsigned> > OpcMap;
|
||||
std::map<unsigned, std::vector<OperandInfo> > Operands;
|
||||
|
Reference in New Issue
Block a user