-
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
Crash with concepts in diagnoseWellFormedUnsatisfiedConstraintExpr #64723
Comments
@llvm/issue-subscribers-clang-frontend |
This appears to be a duplicate of #64172, as my local patch would also resolve it. |
@AaronBallman is this something we should fix in 17.x? I see you added as a reviewer on the Phab diff. |
@llvm/issue-subscribers-c-20 |
We've been asserting on that code since Clang 10.0: https://clang.godbolt.org/z/Y6drTe37z so it's not a regression. I don't think we need to block 17.x on a fix for this (esp because @erichkeane is still out for a bit longer, so we won't hear from the concepts code owner before putting out the next rc). |
I will drop this from the 17.x milestone in that case. |
…tFailure We're expecting a SubstitutionDiagnostic in diagnoseUnsatisfiedRequirement if the status of ExprRequirement is SubstFailure. Previously, the Requirement was created with Expr on SubstFailure by mistake, which could lead to the assertion failure in the subsequent diagnosis. Fixes clangd/clangd#1726 Fixes llvm#64723 Fixes llvm#64172 In addition, this patch also fixes an invalid test from D129499. Reviewed By: erichkeane Differential Revision: https://reviews.llvm.org/D158061
…tFailure We're expecting a SubstitutionDiagnostic in diagnoseUnsatisfiedRequirement if the status of ExprRequirement is SubstFailure. Previously, the Requirement was created with Expr on SubstFailure by mistake, which could lead to the assertion failure in the subsequent diagnosis. Fixes clangd/clangd#1726 Fixes llvm/llvm-project#64723 Fixes llvm/llvm-project#64172 In addition, this patch also fixes an invalid test from D129499. Reviewed By: erichkeane Differential Revision: https://reviews.llvm.org/D158061
…tFailure We're expecting a SubstitutionDiagnostic in diagnoseUnsatisfiedRequirement if the status of ExprRequirement is SubstFailure. Previously, the Requirement was created with Expr on SubstFailure by mistake, which could lead to the assertion failure in the subsequent diagnosis. Fixes clangd/clangd#1726 Fixes llvm#64723 Fixes llvm#64172 In addition, this patch also fixes an invalid test from D129499. Reviewed By: erichkeane Differential Revision: https://reviews.llvm.org/D158061
…tFailure We're expecting a SubstitutionDiagnostic in diagnoseUnsatisfiedRequirement if the status of ExprRequirement is SubstFailure. Previously, the Requirement was created with Expr on SubstFailure by mistake, which could lead to the assertion failure in the subsequent diagnosis. Fixes clangd/clangd#1726 Fixes llvm/llvm-project#64723 Fixes llvm/llvm-project#64172 In addition, this patch also fixes an invalid test from D129499. Reviewed By: erichkeane Differential Revision: https://reviews.llvm.org/D158061
The following code hits an assertion from
diagnoseWellFormedUnsatisfiedConstraintExpr
:https://clang.godbolt.org/z/evchKETWq
See clangd/clangd#1726 for analysis.
The text was updated successfully, but these errors were encountered: