public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/94877] New: Failure to simplify ~(x + 1) to -2 - x
@ 2020-04-30 12:02 gabravier at gmail dot com
  2020-04-30 12:50 ` [Bug tree-optimization/94877] " rguenth at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: gabravier at gmail dot com @ 2020-04-30 12:02 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 94877
           Summary: Failure to simplify ~(x + 1) to -2 - x
           Product: gcc
           Version: 10.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: ---

int f(int x)
{
    return ~(x + 1);
}

With -O3, LLVM outputs this : 

f(int): # @f(int)
  mov eax, -2
  sub eax, edi
  ret

GCC outputs this :

f(int):
  lea eax, [rdi+1]
  not eax
  ret

`~x - 1` is already simplified to `-2 - x`, so optimizing this looks like it
would make sense too.

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

end of thread, other threads:[~2021-08-14 23:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-30 12:02 [Bug tree-optimization/94877] New: Failure to simplify ~(x + 1) to -2 - x gabravier at gmail dot com
2020-04-30 12:50 ` [Bug tree-optimization/94877] " rguenth at gcc dot gnu.org
2020-04-30 19:08 ` pinskia at gcc dot gnu.org
2020-05-06 14:55 ` jakub at gcc dot gnu.org
2020-05-06 15:56 ` ubizjak at gmail dot com
2021-08-14 23:47 ` 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).