public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/112096] New: `(a || b) ? a : b` should be simplified to a
@ 2023-10-26  5:16 pinskia at gcc dot gnu.org
  2023-10-26  5:17 ` [Bug tree-optimization/112096] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-10-26  5:16 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 112096
           Summary: `(a || b) ? a : b` should be simplified to a
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

Take:
```
int t0(int x, int y)
{
  _Bool t = x == 0 && y == 0;
  if (t) return x; return y;
} // y

int t0_(int x, int y)
{
  _Bool t = x == 0 && y == 0;
  if (t) return 0; return y;
} // y

int t1(int x, int y)
{
  _Bool t = x || y;
  if (t) return x; return y;
} // x
int t1_(int x, int y)
{
  _Bool t = x || y;
  if (t) return x; return 0;
} // x
```
These should be simplified as the comment says

All 4 of these are caught by LLVM.

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

end of thread, other threads:[~2023-11-02 18:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-26  5:16 [Bug tree-optimization/112096] New: `(a || b) ? a : b` should be simplified to a pinskia at gcc dot gnu.org
2023-10-26  5:17 ` [Bug tree-optimization/112096] " pinskia at gcc dot gnu.org
2023-10-26 20:14 ` pinskia at gcc dot gnu.org
2023-10-26 20:22 ` pinskia at gcc dot gnu.org
2023-11-02 18:39 ` 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).