https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124006
Drea Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://gcc.gnu.org/bugzill
| |a/show_bug.cgi?id=125592
--- Comment #6 from Drea Pinski <pinskia at gcc dot gnu.org> ---
I think this is reduced too much in the end.
I did find PR 125592 which is for this reduced testcase.
But for the full testcase I don't think that is needed.
We have something like:
```
int f(int t, bool is_inf)
{
t &= ~(0x0080 | 0x0100 | 0x0200);
if (is_inf)
t |= 0x0040;
return t;
}
```
Which will convert correctly.