https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119376
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2025-03-19 Status|UNCONFIRMED |NEW Component|c++ |ipa Keywords| |diagnostic, rejects-valid Ever confirmed|0 |1 --- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> --- The question comes, do we drop musttail after inining? An example: ``` void f(); static inline void h() { [[clang::musttail]] return f(); } void g() { h(); f(); } ``` clang drops it while GCC does not.