https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119584
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution|--- |DUPLICATE
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
gcc_checking_assert (to->calls_comdat_local);
Early inline rejects it:
/app/example.cpp:19:38: missed: not inlinable: void f()/4 -> void d(ae)
requires a<ae> [with ae = int*]/5, callee refers to comdat-local symbols
Referring: _Z1dIPiEvT_/7 (alias)
so basically _Z1dIPiEvT_ and _Z1dIPiEvT_Q1aIS1_E are alias of each other which
seems to be causing the issue.
.weak _Z1dIPiEvT_
.set _Z1dIPiEvT_,_Z1dIPiEvT_Q1aIS1_E
So yes this is exactly the same as PR 103819 then. just GCC 14 introduced the
alias for concept in this case.
*** This bug has been marked as a duplicate of bug 103819 ***