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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I should note the non-constant case is already handled:
```
int unopt(int n, int c) {
    if (n / c)
        return n / c;
    else
        return 0;
}
```
It is just the constant case that has issues.

Reply via email to