[PATCH] D23794: [ELF] - Versionscript: support wildcards for extern "c++" tag.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 29 16:20:28 PDT 2016


ruiu accepted this revision.
ruiu added a comment.
This revision is now accepted and ready to land.

LGTM


================
Comment at: ELF/SymbolTable.cpp:680
@@ -658,3 +679,3 @@
     for (SymbolVersion &Sym : V.Globals)
-      if (hasWildcard(Sym.Name))
-        for (SymbolBody *B : findAll(Sym.Name))
+      if (hasWildcard(Sym.Name)) {
+        std::vector<SymbolBody *> All =
----------------
  if (!hasWildcard(Sym.Name))
    continue;


https://reviews.llvm.org/D23794





More information about the llvm-commits mailing list