-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Labels
accepts-invalid
c++23
clang:frontend
Language frontend issues, e.g. anything involving "Sema"
constexpr
Anything related to constant evaluation
Milestone
Comments
@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.) |
A simpler example (Godbolt link): int &ff();
int &x = ff();
constexpr int &y = x; |
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.
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
Should be rejected, currently accepted. (And related variations miscompile.)
The text was updated successfully, but these errors were encountered: