public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/95424] New: Failure to optimize division with numerator of 1
@ 2020-05-29 20:21 gabravier at gmail dot com
  2020-06-02  6:46 ` [Bug tree-optimization/95424] " rguenth at gcc dot gnu.org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: gabravier at gmail dot com @ 2020-05-29 20:21 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 95424
           Summary: Failure to optimize division with numerator of 1
           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: ---

unsigned f(unsigned x)
{
    return 1 / x;
}

This can be optimized to `return (x == 1);`, and for `int` to `return
(unsigned)(x + 1) < 3 ? x : 0;`. This transformation is done by LLVM, but not
by GCC.

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

end of thread, other threads:[~2024-01-20 17:16 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-29 20:21 [Bug tree-optimization/95424] New: Failure to optimize division with numerator of 1 gabravier at gmail dot com
2020-06-02  6:46 ` [Bug tree-optimization/95424] " rguenth at gcc dot gnu.org
2021-08-14 23:59 ` pinskia at gcc dot gnu.org
2021-12-30  7:12 ` zhaoweiliew at gmail dot com
2021-12-31  1:16 ` zhaoweiliew at gmail dot com
2021-12-31  1:17 ` zhaoweiliew at gmail dot com
2021-12-31  1:18 ` zhaoweiliew at gmail dot com
2021-12-31  1:19 ` zhaoweiliew at gmail dot com
2022-01-05  3:33 ` zhaoweiliew at gmail dot com
2022-01-28 18:37 ` cvs-commit at gcc dot gnu.org
2022-01-28 18:41 ` law at gcc dot gnu.org
2022-01-29 16:56 ` cvs-commit at gcc dot gnu.org
2024-01-20 17:16 ` 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).