public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/111679] New: `(~a) | (a ^ b)` is not simplified to `~(a & b)`
@ 2023-10-03 16:11 pinskia at gcc dot gnu.org
  2023-10-03 16:11 ` [Bug tree-optimization/111679] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-10-03 16:11 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 111679
           Summary: `(~a) | (a ^ b)` is not simplified 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: ---

Take:
```
int f(int a, int b)
{
        return a | ((~a) ^ b);
}

int f1(int a, int b)
{
        return (~a) | (a ^ b); // ~(a & b) or (~a) | (~b)
}
```

The only difference between these 2 functions is a is bitwise inversed. f is
able to be detected and simplified but not f1.

I Noticed this while working on PR 111282.

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

end of thread, other threads:[~2023-10-10 17:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-03 16:11 [Bug tree-optimization/111679] New: `(~a) | (a ^ b)` is not simplified to `~(a & b)` pinskia at gcc dot gnu.org
2023-10-03 16:11 ` [Bug tree-optimization/111679] " pinskia at gcc dot gnu.org
2023-10-05  4:15 ` pinskia at gcc dot gnu.org
2023-10-09 21:28 ` pinskia at gcc dot gnu.org
2023-10-10 17:27 ` cvs-commit at gcc dot gnu.org
2023-10-10 17:29 ` 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).