public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "mital at mitalashok dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/115583] New: Call to consteval function in `if consteval` immediate function context rejected at -O1
Date: Fri, 21 Jun 2024 16:41:17 +0000	[thread overview]
Message-ID: <bug-115583-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 115583
           Summary: Call to consteval function in `if consteval` immediate
                    function context rejected at -O1
           Product: gcc
           Version: 15.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mital at mitalashok dot co.uk
  Target Milestone: ---

Reduced from https://stackoverflow.com/q/78652860

This valid code:

```
consteval int f(int i) {
  return i;
}
constexpr int g(int i) {
  if consteval {
    return f(i);
  } else {
    return i;
  }
}
int main() {
  return g(1);
}
```

Compiles at -O0, but is rejected at -O1: https://godbolt.org/z/bP9rEsqc8

             reply	other threads:[~2024-06-21 16:41 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-21 16:41 mital at mitalashok dot co.uk [this message]
2024-06-21 16:47 ` [Bug c++/115583] C++23: " pinskia at gcc dot gnu.org
2024-06-21 20:32 ` [Bug c++/115583] [14/15 Regression] C++23: Call to consteval function in `if consteval` immediate function context rejected at -O1 since r14-4140 ppalka at gcc dot gnu.org
2024-06-21 20:36 ` pinskia at gcc dot gnu.org
2024-06-24 17:03 ` mpolacek at gcc dot gnu.org
2024-06-27 21:13 ` mpolacek 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-115583-4@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).