public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/95185] New: Failure to optimize specific kind of sign comparison check
@ 2020-05-18 12:05 gabravier at gmail dot com
  2020-05-18 13:15 ` [Bug tree-optimization/95185] " rguenth at gcc dot gnu.org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: gabravier at gmail dot com @ 2020-05-18 12:05 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 95185
           Summary: Failure to optimize specific kind of sign comparison
                    check
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gabravier at gmail dot com
  Target Milestone: ---

int f(int x, int y)
{
    return (x >= 0) == (y <= 0);
}

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94718 was resolved and most of the
patterns are now optimized, but this specific one isn't. It's equivalent to `(x
< 0) ^ (y <= 0)`, which can be done with a single compare instead of two. That
transformation is made by LLVM, but not by GCC.

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

end of thread, other threads:[~2024-03-22 14:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-18 12:05 [Bug tree-optimization/95185] New: Failure to optimize specific kind of sign comparison check gabravier at gmail dot com
2020-05-18 13:15 ` [Bug tree-optimization/95185] " rguenth at gcc dot gnu.org
2020-05-18 13:16 ` rguenth at gcc dot gnu.org
2021-10-04 23:02 ` arjun.is at lostca dot se
2021-10-04 23:12 ` pinskia at gcc dot gnu.org
2023-06-18 19:24 ` pinskia at gcc dot gnu.org
2023-08-28 20:36 ` pinskia at gcc dot gnu.org
2023-08-28 21:08 ` pinskia at gcc dot gnu.org
2023-08-29  4:04 ` pinskia at gcc dot gnu.org
2023-09-11 22:14 ` [Bug tree-optimization/95185] [11/12/13/14 Regression] " pinskia at gcc dot gnu.org
2024-03-22 14:09 ` law 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).