https://gcc.gnu.org/bugzilla/show_bug.cgi?id=121103
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
Assignee|unassigned at gcc dot gnu.org |pinskia at gcc dot
gnu.org
--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #5)
> Not folding a noreturn call to an inline sequence. Or do what the inliner
> does, and put in a gcc_unreachable (). I'd prefer the former.
After fixing gimple-fold not to do the folding at that point.
We end up with DSE removing the call:
Deleted dead call: memmove (&b.d, &c, 8);
Let me figure that out too.