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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2026-03-15
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Andrew Pinski from comment #1)
> Can you reproduce it without a recusive function?

Yes:
```
int baz (int n, int m)
{
  int r = 100;
  while (n != 0) {
    n = n - 1;
    r = r - m;
  }
  return r;
}
```

Reply via email to