public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/110919] [14 Regression] Dead Code Elimination Regression at -O3 since r14-1691-gbc5a2c2e793
Date: Mon, 04 Sep 2023 05:53:44 +0000	[thread overview]
Message-ID: <bug-110919-4-Za9EIA8pzX@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-110919-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
For -O1 we have:
  _24 = c_16 == 0;
  _6 = (int) _24;
  _2 = (short int) _24;
  _3 = (int) _24;
  _5 = e;
  _20 = _3 == _5;
  _21 = c_16 != 0;
  _22 = _20 & _21;

((c_16 == 0) == _5) & (c_16 != 0)
((!b) ? 0 : 1) == _5 & (b)
(c_16 != 0) & (0 == _5)

This fixes -O1 (which didn't work before):

(simplify
 (bit_and:c zero_one_valued_p@0 (eq:c @1 (convert @2)))
 (with { bool wascmp; }
  (if (bitwise_inverted_equal_p (@0, @2, wascmp))
   (bit_and @0 (eq @1 { build_zero_cst (TREE_TYPE (@1)); })))))

But -O2 is still broken.

  parent reply	other threads:[~2023-09-04  5:53 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-06 11:05 [Bug tree-optimization/110919] New: " scherrer.sv at gmail dot com
2023-08-06 11:35 ` [Bug tree-optimization/110919] " scherrer.sv at gmail dot com
2023-08-06 16:55 ` pinskia at gcc dot gnu.org
2023-08-06 17:12 ` pinskia at gcc dot gnu.org
2023-08-20  9:11 ` pinskia at gcc dot gnu.org
2023-08-20 18:36 ` pinskia at gcc dot gnu.org
2023-08-20 18:41 ` pinskia at gcc dot gnu.org
2023-09-04  5:53 ` pinskia at gcc dot gnu.org [this message]
2023-09-04  6:09 ` pinskia at gcc dot gnu.org
2023-09-04  6:55 ` pinskia at gcc dot gnu.org
2024-03-07 23:26 ` law at gcc dot gnu.org
2024-05-07  7:41 ` [Bug tree-optimization/110919] [14/15 " rguenth at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-110919-4-Za9EIA8pzX@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).