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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The rest of the comparison operators:

`MIN <a, b> <= MAX <a, b>` should be simplified down to true.
`MIN <a, b> > MAX <a, b>` should be simplified down to false.

`MIN <a, b> < MAX <a, b>` should be simplified down to `a != b`
`MIN <a, b> >= MAX <a, b>` should be simplified down to `a == b`

Reply via email to