diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-04-26 22:31:39 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-04-26 22:31:39 +0000 |
commit | 7975b99fe69953e9c8a2e69c12fb19e825f5cadf (patch) | |
tree | 5d07c10a91502454668e5c090d0ec4d824a52096 /llvm/lib/MC/ELFObjectWriter.cpp | |
parent | 4f013bb3b2ea6a6b2df422bc3387662b26935525 (diff) | |
download | bcm5719-llvm-7975b99fe69953e9c8a2e69c12fb19e825f5cadf.tar.gz bcm5719-llvm-7975b99fe69953e9c8a2e69c12fb19e825f5cadf.zip |
[MC] Fix some Clang-tidy modernize-use-using warnings; other minor fixes (NFC).
llvm-svn: 301485
Diffstat (limited to 'llvm/lib/MC/ELFObjectWriter.cpp')
-rw-r--r-- | llvm/lib/MC/ELFObjectWriter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index ee9c25cda94..e86db933af3 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -63,7 +63,7 @@ using namespace llvm; namespace { -typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy; +using SectionIndexMapTy = DenseMap<const MCSectionELF *, uint32_t>; class ELFObjectWriter; @@ -194,8 +194,8 @@ public: ELFSymbolData &MSD, const MCAsmLayout &Layout); // Start and end offset of each section - typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>> - SectionOffsetsTy; + using SectionOffsetsTy = + std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>; bool shouldRelocateWithSymbol(const MCAssembler &Asm, const MCSymbolRefExpr *RefA, @@ -208,7 +208,7 @@ public: uint64_t &FixedValue) override; // Map from a signature symbol to the group section index - typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy; + using RevGroupMapTy = DenseMap<const MCSymbol *, unsigned>; /// Compute the symbol table data /// |