https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106164
--- Comment #9 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Created attachment 55658 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=55658&action=edit Secondary patch to add the thing I mentioned Note this does not handle the constant case since we change `a >= 2` into `a > 1`. For an example: ``` int f(int a, int b) { b =2; int c = a != b; int d = a >= b; return c & d; } ``` But we do handle now more ...