[PATCH] D21930: [ELF] - Implement extern "c++" version script tag

Ed Maste via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 4 06:42:30 PDT 2016


emaste added a subscriber: emaste.
emaste added a comment.

>   if (!Name.startswith("_Z"))

>       return Name;


This one is needed, otherwise a symbol f would be demangled to float. We want only mangled symbol names (which start with `_Z`), not types etc.


http://reviews.llvm.org/D21930





More information about the llvm-commits mailing list