https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115547
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |easyhack
Last reconfirmed| |2026-03-24
See Also| |https://github.com/llvm/llv
| |m-project/issues/71792
Status|UNCONFIRMED |NEW
Ever confirmed|0 |1
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Another testcase:
```
bool test1(bool a, bool b)
{
return (a | b) ? (a ^ b) : (a & b);
}
```
Right now I am not worried about comment #1 though.