diff options
Diffstat (limited to 'contrib/llvm/tools/lld/ELF/SymbolTable.h')
-rw-r--r-- | contrib/llvm/tools/lld/ELF/SymbolTable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/llvm/tools/lld/ELF/SymbolTable.h b/contrib/llvm/tools/lld/ELF/SymbolTable.h index 898185fc9612..675a4915598f 100644 --- a/contrib/llvm/tools/lld/ELF/SymbolTable.h +++ b/contrib/llvm/tools/lld/ELF/SymbolTable.h @@ -80,6 +80,9 @@ public: void handleDynamicList(); + // Set of .so files to not link the same shared object file more than once. + llvm::DenseMap<StringRef, InputFile *> SoNames; + private: std::pair<Symbol *, bool> insertName(StringRef Name); @@ -107,9 +110,6 @@ private: // is used to uniquify them. llvm::DenseSet<llvm::CachedHashStringRef> ComdatGroups; - // Set of .so files to not link the same shared object file more than once. - llvm::DenseMap<StringRef, InputFile *> SoNames; - // A map from demangled symbol names to their symbol objects. // This mapping is 1:N because two symbols with different versions // can have the same name. We use this map to handle "extern C++ {}" |