Remove dead code.

llvm-svn: 314966
This commit is contained in:
Rafael Espindola 2017-10-05 03:01:05 +00:00
parent a4a3d40eb6
commit 4b851198fc
1 changed files with 0 additions and 7 deletions

View File

@ -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;