diff options
Diffstat (limited to 'llvm/utils/TableGen/InstrInfoEmitter.cpp')
| -rw-r--r-- | llvm/utils/TableGen/InstrInfoEmitter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp index e725de1..ee3cd8c 100644 --- a/llvm/utils/TableGen/InstrInfoEmitter.cpp +++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp @@ -68,9 +68,9 @@ private: void emitEnums(raw_ostream &OS, ArrayRef<const CodeGenInstruction *> NumberedInstructions); - typedef std::vector<std::string> OperandInfoTy; - typedef std::vector<OperandInfoTy> OperandInfoListTy; - typedef std::map<OperandInfoTy, unsigned> OperandInfoMapTy; + using OperandInfoTy = std::vector<std::string>; + using OperandInfoListTy = std::vector<OperandInfoTy>; + using OperandInfoMapTy = std::map<OperandInfoTy, unsigned>; /// Generate member functions in the target-specific GenInstrInfo class. /// |
