================
@@ -2572,7 +2572,7 @@ Decl *TemplateDeclInstantiator::VisitFunctionDecl(
   // Friend function defined withing class template may stop being function
   // definition during AST merges from different modules, in this case decl
   // with function body should be used for instantiation.
-  if (isFriend) {
+  if (isFriend && D->hasOwningModule()) {
----------------
dmpolukhin wrote:

There is a problem with adding more flags to `FunctionDecl`, 
`FunctionDeclBitfields` is full and I cannot add there anything. `Redeclarable` 
doesn't have any flags as the moment and we need this extra flag only for 
FunctionDecls at the moment. So new version of the code works but most probably 
it cannot be committed as is. I also added another test case for the same 
example but inside module. My previous version was not able to compile it 
correctly.

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

Reply via email to