<div dir="ltr">There are many kinds of DeclarationName in Clang:<div><div>  enum NameKind {</div><div>    Identifier,</div><div>    ObjCZeroArgSelector,</div><div>    ObjCOneArgSelector,</div><div>    ObjCMultiArgSelector,</div><div>    CXXConstructorName,</div><div>    CXXDestructorName,</div><div>    CXXConversionFunctionName,</div><div>    CXXOperatorName,</div><div>    CXXLiteralOperatorName,</div><div>    CXXUsingDirective</div><div>  };</div></div><div><br></div><div>getName only works on simple identifiers. You can use getNameAsString or printName if you want clang to synthesize a string for a non-identifier name.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Oct 12, 2016 at 2:55 AM, Abhishek Kumar via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Hello <br></div><div>I am trying to build a static-analyzer for C/C++ programs using clang 3.9 libtool. My code crashes for some C++ programs, with the assertion error """ Assertion `Name.isIdentifier() && "Name is not a simple identifier"' failed """.<br></div><div>    It is caused by clang::FunctionDecl::getName function call which I am calling to get the name of the function declaration.<br><br></div><div>Can someone please help with possible reasons and potential fixes of this error? As far as I know this was some bug till 3.8 but has been fixed now. I have built clang 3.9 from sources.<br><br></div><div>Thanks<span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888"><div>Abhishek Kumar<br></div></font></span></div>
<br>______________________________<wbr>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div>