[PATCH] D24336: [ELF] - Versionscript: support mangled symbols with the same name.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 9 09:58:33 PDT 2016


grimar added inline comments.

================
Comment at: ELF/SymbolTable.h:104
@@ -103,3 +103,3 @@
 
-  std::map<std::string, SymbolBody *> getDemangledSyms();
+  std::map<std::string, std::vector<SymbolBody *>> getDemangledSyms();
 
----------------
ruiu wrote:
> It seems you want to use multimap instead of map + vector.
Problably I am missing something, but my question is: for what ?
I see no difference here.


https://reviews.llvm.org/D24336





More information about the llvm-commits mailing list