https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119535

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2025-03-29
            Summary|[15 regression] Firefox     |v2: musttail vs
                   |fails to build              |-fprofile-generate
                   |(SkRasterPipeline_opts.h:16 |
                   |03:31: error: cannot        |
                   |tail-call: other reasons)   |
     Ever confirmed|0                           |1

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase:
```
void b(void);
void d(void) {
  b();
  b();
  [[clang::musttail]] return b();
}
```

Reply via email to