This needs a testcase added to the tests directory.<br><br>On Wednesday, February 10, 2016, don hinton via cfe-commits <<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">hintonda created this revision.<br>
hintonda added reviewers: doug.gregor, rnk.<br>
hintonda added a subscriber: cfe-commits.<br>
<br>
Fixes crash referenced in PR25181 where dyn_cast is called on a null instance of LM.Method.<br>
<br>
<a href="http://reviews.llvm.org/D17072" target="_blank">http://reviews.llvm.org/D17072</a><br>
<br>
Files:<br>
  lib/Parse/ParseCXXInlineMethods.cpp<br>
<br>
Index: lib/Parse/ParseCXXInlineMethods.cpp<br>
===================================================================<br>
--- lib/Parse/ParseCXXInlineMethods.cpp<br>
+++ lib/Parse/ParseCXXInlineMethods.cpp<br>
@@ -293,6 +293,7 @@<br>
 }<br>
<br>
 void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM) {<br>
+  if(!LM.Method) return;</blockquote><div><br></div><div>Please format this line with clang-format.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
   // If this is a member template, introduce the template parameter scope.<br>
   ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);<br>
   TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);<br>
<br>
<br>
</blockquote>