public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/113189] New: `(-X * Y) * -X` can be optimized to `(X * Y) * X`
@ 2024-01-01  9:39 pinskia at gcc dot gnu.org
  2024-01-01  9:43 ` [Bug tree-optimization/113189] " pinskia at gcc dot gnu.org
  2024-01-01 13:31 ` jsm28 at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-01-01  9:39 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113189
           Summary: `(-X * Y) * -X` can be optimized to `(X * Y) * X`
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: missed-optimization, TREE
          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 f(int X, int Y)
{
        return (-X * Y) * -X;
}
double fd(double X, double Y)
{
        return (-X * Y) * -X;
}

int g(int X, int Y)
{
        return ((-X) << Y) * -X;
}
```

The negative should be optimized away but currently is only optimized at the
RTL level.

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

end of thread, other threads:[~2024-01-01 13:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-01  9:39 [Bug tree-optimization/113189] New: `(-X * Y) * -X` can be optimized to `(X * Y) * X` pinskia at gcc dot gnu.org
2024-01-01  9:43 ` [Bug tree-optimization/113189] " pinskia at gcc dot gnu.org
2024-01-01 13:31 ` jsm28 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).