diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-10-05 03:01:05 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-10-05 03:01:05 +0000 |
commit | 4b851198fc581e8629c8132abefd1d6c96a706c2 (patch) | |
tree | 8606c15b9969e27bb61be8687a5ec315b4950e2d | |
parent | a4a3d40eb6497a7a9595949a41b19dce1d48e6bd (diff) | |
download | bcm5719-llvm-4b851198fc581e8629c8132abefd1d6c96a706c2.tar.gz bcm5719-llvm-4b851198fc581e8629c8132abefd1d6c96a706c2.zip |
Remove dead code.
llvm-svn: 314966
-rw-r--r-- | lld/ELF/Config.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lld/ELF/Config.h b/lld/ELF/Config.h index 83afb84896f..b18aaa00729 100644 --- a/lld/ELF/Config.h +++ b/lld/ELF/Config.h @@ -67,12 +67,6 @@ struct VersionDefinition { size_t NameOff = 0; // Offset in the string table }; -// Structure for mapping renamed symbols -struct RenamedSymbol { - Symbol *Target; - uint8_t OriginalBinding; -}; - // This struct contains the global configuration for the linker. // Most fields are direct mapping from the command line options // and such fields have the same name as the corresponding options. @@ -108,7 +102,6 @@ struct Configuration { std::vector<SymbolVersion> VersionScriptGlobals; std::vector<SymbolVersion> VersionScriptLocals; std::vector<uint8_t> BuildIdVector; - llvm::MapVector<Symbol *, RenamedSymbol> RenamedSymbols; bool AllowMultipleDefinition; bool AsNeeded = false; bool Bsymbolic; |