[clang] [Clang] Fix dependency computation for pack indexing expression (PR #91933)
via cfe-commits
cfe-commits at lists.llvm.org
Mon May 13 04:01:28 PDT 2024
================
@@ -376,6 +376,9 @@ ExprDependence clang::computeDependence(PackExpansionExpr *E) {
ExprDependence clang::computeDependence(PackIndexingExpr *E) {
ExprDependence D = E->getIndexExpr()->getDependence();
+ if (D & ExprDependence::Value)
+ D |= ExprDependence::TypeInstantiation;
----------------
cor3ntin wrote:
NVM, you are right, we can simplify this whole thing, I'll do that shortly
https://github.com/llvm/llvm-project/pull/91933
More information about the cfe-commits
mailing list