<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Mar 24, 2015 at 2:28 PM, Ehsan Akhgari <span dir="ltr"><<a href="mailto:ehsan.akhgari@gmail.com" target="_blank">ehsan.akhgari@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I'm having difficulty fixing the issue that caused this patch to bounce when I landed it earlier this morning.  Here is a link to the log of the test failure: <a href="http://lab.llvm.org:8011/builders/clang-hexagon-elf/builds/24611/steps/check-all/logs/FAIL%3A%20Clang%3A%3Afixit-cxx0x.cpp" target="_blank">http://lab.llvm.org:8011/builders/clang-hexagon-elf/builds/24611/steps/check-all/logs/FAIL%3A%20Clang%3A%3Afixit-cxx0x.cpp</a><br>
<br>
The issue is my call to getFunctionTypeInfo().  That call is now asserting because isFunctionDeclarator() returns false on the declaration.  I checked, and isDeclarationOfFunction() returns true, but I'm not sure how to get a FunctionTypeInfo out of such a declarator.<br></blockquote><div><br></div><div>You can't; there isn't one. Consider:</div><div><br></div><div>typedef int F() const;</div><div><br></div><div>struct X {</div><div>  virtual F f final volatile;</div><div>};</div><div><br></div><div>The declaration of X::f doesn't have a function declarator. The simplest way out of this would be to skip your new recovery path if your Declarator is not a function declarator.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Can someone please help?  Thanks!<br>
<span class=""><br>
<br>
REPOSITORY<br>
  rL LLVM<br>
<br>
<a href="http://reviews.llvm.org/D6828" target="_blank">http://reviews.llvm.org/D6828</a><br>
<br>
</span>EMAIL PREFERENCES<br>
  <a href="http://reviews.llvm.org/settings/panel/emailpreferences/" target="_blank">http://reviews.llvm.org/settings/panel/emailpreferences/</a><br>
<br>
<br>
</blockquote></div><br></div></div>