public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/114580] Bogus warning on if constexpr
Date: Sun, 21 Apr 2024 04:09:05 +0000	[thread overview]
Message-ID: <bug-114580-4-XPNZ1XaYdY@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-114580-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #4 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-13 branch has been updated by Jakub Jelinek
<jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:ae3b6dea0445f9650cf1a684527efac06497f1b4

commit r13-8629-gae3b6dea0445f9650cf1a684527efac06497f1b4
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Tue Apr 9 09:31:42 2024 +0200

    c++: Fix up maybe_warn_for_constant_evaluated calls [PR114580]

    When looking at maybe_warn_for_constant_evaluated for the trivial
    infinite loops patch, I've noticed that it can emit weird diagnostics
    for if constexpr in templates, first warn that std::is_constant_evaluted()
    always evaluates to false (because the function template is not constexpr)
    and then during instantiation warn that std::is_constant_evaluted()
    always evaluates to true (because it is used in if constexpr condition).
    Now, only the latter is actually true, even when the if constexpr
    is in a non-constexpr function, it will still always evaluate to true.

    So, the following patch fixes it to call maybe_warn_for_constant_evaluated
    always with IF_STMT_CONSTEXPR_P (if_stmt) as the second argument rather
than
    true if it is if constexpr with non-dependent condition etc.

    2024-04-09  Jakub Jelinek  <jakub@redhat.com>

            PR c++/114580
            * semantics.cc (finish_if_stmt_cond): Call
            maybe_warn_for_constant_evaluated with IF_STMT_CONSTEXPR_P
(if_stmt)
            as the second argument, rather than true/false depending on if
            it is if constexpr with non-dependent constant expression with
            bool type.

            * g++.dg/cpp2a/is-constant-evaluated15.C: New test.

    (cherry picked from commit cfed80b9e4f562c99679739548df9369117dd791)

  parent reply	other threads:[~2024-04-21  4:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-04 10:02 [Bug c++/114580] New: " jakub at gcc dot gnu.org
2024-04-04 10:31 ` [Bug c++/114580] " jakub at gcc dot gnu.org
2024-04-09  7:32 ` cvs-commit at gcc dot gnu.org
2024-04-09  7:39 ` jakub at gcc dot gnu.org
2024-04-21  4:09 ` cvs-commit at gcc dot gnu.org [this message]
2024-04-23  6:45 ` jakub 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-114580-4-XPNZ1XaYdY@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).