Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

accepts-invalid with C++23 constexpr-unknown with struct containing reference #129845

Closed
efriedma-quic opened this issue Mar 5, 2025 · 3 comments · Fixed by #129952
Closed

accepts-invalid with C++23 constexpr-unknown with struct containing reference #129845

efriedma-quic opened this issue Mar 5, 2025 · 3 comments · Fixed by #129952
Labels
accepts-invalid c++23 clang:frontend Language frontend issues, e.g. anything involving "Sema" constexpr Anything related to constant evaluation

Comments

@efriedma-quic
Copy link
Collaborator

int &ff();
int &x = ff();
struct A { int& x; };
constexpr A g = {x};
const A* gg = &g;

Should be rejected, currently accepted. (And related variations miscompile.)

@efriedma-quic efriedma-quic added c++23 clang:frontend Language frontend issues, e.g. anything involving "Sema" constexpr Anything related to constant evaluation labels Mar 5, 2025
@llvmbot
Copy link
Member

llvmbot commented Mar 5, 2025

@llvm/issue-subscribers-clang-frontend

Author: Eli Friedman (efriedma-quic)

``` int &ff(); int &x = ff(); struct A { int& x; }; constexpr A g = {x}; const A* gg = &g; ```

Should be rejected, currently accepted. (And related variations miscompile.)

@frederick-vs-ja
Copy link
Contributor

A simpler example (Godbolt link):

int &ff();
int &x = ff();
constexpr int &y = x;

@cor3ntin
Copy link
Contributor

cor3ntin commented Mar 5, 2025

@shafik

efriedma-quic added a commit to efriedma-quic/llvm-project that referenced this issue Mar 5, 2025
…consistently.

Perform the check for constexpr-unknown values in the same place we
perform checks for other values which don't count as constant
expressions.

While I'm here, also fix a rejects-valid with a reference that doesn't
have an initializer.  This diagnostic was also covering up some of the
bugs here.

The existing behavior with -fexperimental-new-constant-interpreter seems
to be correct, but the diagnostics are slightly different; it would be
helpful if someone could check on that as a followup.

Followup to llvm#128409.

Fixes llvm#129844. Fixes llvm#129845.
@github-project-automation github-project-automation bot moved this from Needs Triage to Done in LLVM Release Status Mar 10, 2025
efriedma-quic added a commit to efriedma-quic/llvm-project that referenced this issue Mar 10, 2025
…consistently (llvm#129952)

Perform the check for constexpr-unknown values in the same place we
perform checks for other values which don't count as constant
expressions.

While I'm here, also fix a rejects-valid with a reference that doesn't
have an initializer. This diagnostic was also covering up some of the
bugs here.

The existing behavior with -fexperimental-new-constant-interpreter seems
to be correct, but the diagnostics are slightly different; it would be
helpful if someone could check on that as a followup.

Followup to llvm#128409.

Fixes llvm#129844. Fixes llvm#129845.
swift-ci pushed a commit to swiftlang/llvm-project that referenced this issue Mar 11, 2025
…consistently (llvm#129952)

Perform the check for constexpr-unknown values in the same place we
perform checks for other values which don't count as constant
expressions.

While I'm here, also fix a rejects-valid with a reference that doesn't
have an initializer. This diagnostic was also covering up some of the
bugs here.

The existing behavior with -fexperimental-new-constant-interpreter seems
to be correct, but the diagnostics are slightly different; it would be
helpful if someone could check on that as a followup.

Followup to llvm#128409.

Fixes llvm#129844. Fixes llvm#129845.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
accepts-invalid c++23 clang:frontend Language frontend issues, e.g. anything involving "Sema" constexpr Anything related to constant evaluation
Projects
6 participants