[PATCH] D43059: Add implementation for MSVC in CPlusPlusLanguage::IsCPPMangledName
Aaron Smith via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 8 12:33:38 PST 2018
asmith added a comment.
How about this?
if (name == nullptr)
return false;
return ( (name[0] == '?') || (name[0] == '_' && name[1] == 'Z') );
Repository:
rL LLVM
https://reviews.llvm.org/D43059
More information about the llvm-commits
mailing list