[TableGen] Make a class member local to the function that populates it and consumes it later. NFC

llvm-svn: 258490
This commit is contained in:
Craig Topper 2016-01-22 05:59:43 +00:00
parent 22c150cc79
commit 33bd74d06d

View File

@ -38,7 +38,6 @@ class AsmWriterEmitter {
CodeGenTarget Target;
ArrayRef<const CodeGenInstruction *> NumberedInstructions;
std::vector<AsmWriterInst> Instructions;
std::vector<std::string> PrintMethods;
public:
AsmWriterEmitter(RecordKeeper &R);
@ -789,6 +788,8 @@ void AsmWriterEmitter::EmitPrintAliasInstruction(raw_ostream &O) {
// before it can be matched to the mnemonic.
std::map<std::string, std::vector<IAPrinter>> IAPrinterMap;
std::vector<std::string> PrintMethods;
// A list of MCOperandPredicates for all operands in use, and the reverse map
std::vector<const Record*> MCOpPredicates;
DenseMap<const Record*, unsigned> MCOpPredicateMap;