public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/113339] New: `-a/-b` is not simplified to `a/b` if done in seperate statements
@ 2024-01-11 19:20 pinskia at gcc dot gnu.org
  2024-01-11 19:23 ` [Bug tree-optimization/113339] " pinskia at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-01-11 19:20 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113339
           Summary: `-a/-b` is not simplified to `a/b` if done in seperate
                    statements
           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 unopt(int a, int b) {
   a = -a;
   b = -b;
    return a / b;
}
int opt(int a, int b) {
    return -a / -b;
}
```
I would have expected these 2 would produce the same assembly but only opt is
optimized to a/b and the neg is removed.

Note LLVM does not do either: https://github.com/llvm/llvm-project/issues/77717
.

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

end of thread, other threads:[~2024-01-11 21:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-11 19:20 [Bug tree-optimization/113339] New: `-a/-b` is not simplified to `a/b` if done in seperate statements pinskia at gcc dot gnu.org
2024-01-11 19:23 ` [Bug tree-optimization/113339] " pinskia at gcc dot gnu.org
2024-01-11 19:33 ` pinskia at gcc dot gnu.org
2024-01-11 21:23 ` 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).