mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 08:41:49 +00:00
[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:
parent
22c150cc79
commit
33bd74d06d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user