-
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
Constant expression evaluation misses copy elision #60286
Comments
@llvm/issue-subscribers-c-20 |
@llvm/issue-subscribers-clang-frontend |
I think in your example But this is different from the original report, where the issue happens without |
Ugh, yeah, I mucked up the example code in the summary. The crux of the example at https://gcc.godbolt.org/z/sn68z5Gaf is this bit:
we should not be noting that constructor because it should have been elided, therefore:
should have not been diagnosed. I think our constant expression evaluator is getting confused. |
Note that copy elision is not performed as part of constant evaluation. If there is a bug here, the bug would be that we should not be calling a copy constructor at all as part of initialization. |
Oh, thank you for pointing that out Richard, I had completely missed the bit you linked. |
I've spent some time looking at this. It seems that when a potential immediate invocation is met, it is immediately wrapped by a llvm-project/clang/lib/Sema/SemaExprCXX.cpp Line 1607 in 553bff0
Basically there is a check that if
Helps to stop diagnosing this code, which considered as valid by other compilers. If that sounds ok, I can put the patch for review. |
The following code fails to compile on Clang:
because we are consider the copy constructor call to be invalid due to not being
consteval
.https://gcc.godbolt.org/z/P8xYjnYjM
The text was updated successfully, but these errors were encountered: