public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/95731] New: Faiilure to optimize a >= 0 && b >= 0 to (a | b) >= 0
@ 2020-06-17 21:58 gabravier at gmail dot com
  2020-06-18  8:41 ` [Bug tree-optimization/95731] " rguenth at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: gabravier at gmail dot com @ 2020-06-17 21:58 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 95731
           Summary: Faiilure to optimize a >= 0 && b >= 0 to (a | b) >= 0
           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: ---

bool f(int a, int b)
{
    return a >= 0 && b >= 0;
}

This can be optimized to `return (a | b) >= 0;`. LLVM does this transformation,
but GCC does not.

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

end of thread, other threads:[~2021-08-14 21:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-17 21:58 [Bug tree-optimization/95731] New: Faiilure to optimize a >= 0 && b >= 0 to (a | b) >= 0 gabravier at gmail dot com
2020-06-18  8:41 ` [Bug tree-optimization/95731] " rguenth at gcc dot gnu.org
2020-06-18  9:19 ` jakub at gcc dot gnu.org
2020-08-04 11:21 ` wilco at gcc dot gnu.org
2020-08-04 11:30 ` jakub at gcc dot gnu.org
2021-01-11 14:44 ` [Bug tree-optimization/95731] Failure " jakub at gcc dot gnu.org
2021-01-12 10:05 ` cvs-commit at gcc dot gnu.org
2021-01-16  8:42 ` jakub at gcc dot gnu.org
2021-08-14 21:27 ` pinskia at gcc dot gnu.org
2021-08-14 21:28 ` 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).