public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/111364] New: `MAX_EXPR<a, b> <= a` is not optimized to `a >= b`
@ 2023-09-10 21:11 pinskia at gcc dot gnu.org
  2023-09-10 21:11 ` [Bug tree-optimization/111364] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-09-10 21:11 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 111364
           Summary: `MAX_EXPR<a, b> <= a` is not optimized to `a >= b`
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P3
         Component: tree-optimization
          Assignee: pinskia at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

I Noticed this while looking into PR 111346:
```
_Bool test2(int a, int b)
{
        int t = a;
        if (t < b) t = b;
        return t <= a;
}
```
Should be optimized to just:
```
        return a >= b;
```

There is a pattern for constants:
/* MIN (X, C1) < C2 -> X < C2 || C1 < C2  */
But we could do the same when we know C1 == C2 and not constant (for
!HONOR_NANS & !HONOR_SIGNED_ZEROS).

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-09-13 12:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-10 21:11 [Bug tree-optimization/111364] New: `MAX_EXPR<a, b> <= a` is not optimized to `a >= b` pinskia at gcc dot gnu.org
2023-09-10 21:11 ` [Bug tree-optimization/111364] " pinskia at gcc dot gnu.org
2023-09-12  0:14 ` pinskia at gcc dot gnu.org
2023-09-12  0:36 ` pinskia at gcc dot gnu.org
2023-09-12  0:36 ` pinskia at gcc dot gnu.org
2023-09-12  5:36 ` pinskia at gcc dot gnu.org
2023-09-12 15:40 ` pinskia at gcc dot gnu.org
2023-09-13 12:07 ` cvs-commit at gcc dot gnu.org
2023-09-13 12:08 ` pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).