@@ -1755,10 +1755,10 @@ class DifferentiableAttr final
1755
1755
1756
1756
// Print the attribute to the given stream.
1757
1757
// If `omitWrtClause` is true, omit printing the `wrt:` clause.
1758
- // If `omitAssociatedFunctions ` is true, omit printing associated functions.
1758
+ // If `omitDerivativeFunctions ` is true, omit printing derivative functions.
1759
1759
void print (llvm::raw_ostream &OS, const Decl *D,
1760
1760
bool omitWrtClause = false ,
1761
- bool omitAssociatedFunctions = false ) const ;
1761
+ bool omitDerivativeFunctions = false ) const ;
1762
1762
1763
1763
static bool classof (const DeclAttribute *DA) {
1764
1764
return DA->getKind () == DAK_Differentiable;
@@ -1789,7 +1789,7 @@ class DerivativeAttr final
1789
1789
private llvm::TrailingObjects<DerivativeAttr, ParsedAutoDiffParameter> {
1790
1790
friend TrailingObjects;
1791
1791
1792
- // / The base type repr for the referenced original function . This field is
1792
+ // / The base type for the referenced original declaration . This field is
1793
1793
// / non-null only for parsed attributes that reference a qualified original
1794
1794
// / declaration. This field is not serialized; type-checking uses it to
1795
1795
// / resolve the original declaration, which is serialized.
@@ -1883,7 +1883,7 @@ class TransposeAttr final
1883
1883
private llvm::TrailingObjects<TransposeAttr, ParsedAutoDiffParameter> {
1884
1884
friend TrailingObjects;
1885
1885
1886
- // / The base type repr for the referenced original function . This field is
1886
+ // / The base type for the referenced original declaration . This field is
1887
1887
// / non-null only for parsed attributes that reference a qualified original
1888
1888
// / declaration. This field is not serialized; type-checking uses it to
1889
1889
// / resolve the original declaration, which is serialized.
0 commit comments