Skip to content

Commit 292c7c4

Browse files
authored
[AutoDiff] Skip implicit GenericTypeParamDecl AST verification. (#32343)
The differentiation transform creates implicit auxiliary struct and enum declarations, cloning implicit `GenericTypeParamDecl`s from a generic signature into a flat `GenericParamList`. These `GenericTypeParamDecl`s may fail depth verification based on `DC->getGenericContextDepth()` because the auxiliary struct and enum declarations are always flat. Skipping verification for implicit `GenericTypeParamDecl`s created by the differentiation transform is the easiest way to fix errors. No other code paths create implicit `GenericTypeParamDecl`s. An alternative is to make the differentiation transform properly generated nested struct and enum declarations. This should fix verification but bloats the number of generated declarations.
1 parent 946595f commit 292c7c4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/AST/ASTVerifier.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -2764,6 +2764,11 @@ class Verifier : public ASTWalker {
27642764
abort();
27652765
}
27662766

2767+
// Skip implicit generic param decls. Their depth and index may not be
2768+
// consistent with the generic context's parameter list.
2769+
if (GTPD->isImplicit())
2770+
return;
2771+
27672772
unsigned currentDepth = DC->getGenericContextDepth();
27682773
if (currentDepth < GTPD->getDepth()) {
27692774
Out << "GenericTypeParamDecl has incorrect depth\n";

0 commit comments

Comments
 (0)