================
@@ -444,7 +444,7 @@ const RawComment *ASTContext::getRawCommentForAnyRedecl(
     return CommentlessRedeclChains.lookup(CanonicalD);
   }();
 
-  for (const auto Redecl : D->redecls()) {
+  for (const auto Redecl : CanonicalD->redecls()) {
----------------
zyn0217 wrote:

Yup, in fact, I think we're not too confident about how many FunctionDecls 
would be generated during the template parsing e.g. they can be the byproducts 
of a TreeTransform/the process of the template argument deduction, such that 
the contract of `TemplateParameterListsInfo` would be less reliable.

https://github.com/llvm/llvm-project/pull/108475
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to