https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110111
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Ever confirmed|0 |1
Last reconfirmed| |2023-07-12
Status|UNCONFIRMED |NEW
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I just ran into this while writing some code inside GCC even.
I originally wrote the code like:
(innereq && cst0) || (!innereq && cst1)
And then I was like that should just be `innereq ? cst0 : cst1`
The other function this should be done for is:
bool f3(bool a, bool b, bool c)
{
return (a && b) || (!a && c);
}