diff options
-rw-r--r-- | llvm/utils/TableGen/AsmWriterEmitter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/AsmWriterEmitter.cpp b/llvm/utils/TableGen/AsmWriterEmitter.cpp index 681012974ce..dd617a65d1a 100644 --- a/llvm/utils/TableGen/AsmWriterEmitter.cpp +++ b/llvm/utils/TableGen/AsmWriterEmitter.cpp @@ -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; |