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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=111456

--- Comment #19 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Another integer testcase which is missed here:
```
_Bool f(int a)
{
        _Bool t = a == 0;
        unsigned t1 = a;
        _Bool t2 = t1 >= 3;
        return t & t2;
}
```

Reply via email to