[PATCH] D11785: [llvm-symbolizer] Remove underscores and other C mangling on Windows

Alexey Samsonov via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 10 14:24:22 PDT 2015


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

LGTM with a note.


================
Comment at: tools/llvm-symbolizer/LLVMSymbolize.cpp:568
@@ -528,1 +567,3 @@
 #endif
+  if (ModInfo->isWin32Module())
+    return std::string(demanglePE32ExternCFunc(Name));
----------------
This code will be unreachable if `_MSC_VER` is not defined.


http://reviews.llvm.org/D11785





More information about the llvm-commits mailing list