diff --git a/utils/TableGen/AsmWriterEmitter.cpp b/utils/TableGen/AsmWriterEmitter.cpp index 681012974ce..dd617a65d1a 100644 --- a/utils/TableGen/AsmWriterEmitter.cpp +++ b/utils/TableGen/AsmWriterEmitter.cpp @@ -38,7 +38,6 @@ class AsmWriterEmitter { CodeGenTarget Target; ArrayRef NumberedInstructions; std::vector Instructions; - std::vector 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> IAPrinterMap; + std::vector PrintMethods; + // A list of MCOperandPredicates for all operands in use, and the reverse map std::vector MCOpPredicates; DenseMap MCOpPredicateMap;