@@ -5451,10 +5451,18 @@ bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors,
5451
5451
NumInitializers * sizeof(CXXCtorInitializer*));
5452
5452
Constructor->setCtorInitializers(baseOrMemberInitializers);
5453
5453
5454
+ SourceLocation Location = Constructor->getLocation();
5455
+
5456
+ for (CXXCtorInitializer *Initializer : Info.AllToInit) {
5457
+ FieldDecl *Field = Initializer->getAnyMember();
5458
+ if (Field) {
5459
+ MarkFieldDestructorReferenced(Location, Field);
5460
+ }
5461
+ }
5462
+
5454
5463
// Constructors implicitly reference the base and member
5455
5464
// destructors.
5456
- MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
5457
- Constructor->getParent());
5465
+ MarkBaseAndMemberDestructorsReferenced(Location, Constructor->getParent());
5458
5466
}
5459
5467
5460
5468
return HadError;
@@ -5759,6 +5767,43 @@ void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
5759
5767
DiagnoseUninitializedFields(*this, Constructor);
5760
5768
}
5761
5769
5770
+
5771
+ void Sema::MarkFieldDestructorReferenced(SourceLocation Location,
5772
+ FieldDecl *Field) {
5773
+ if (Field->isInvalidDecl())
5774
+ return;
5775
+
5776
+ // Don't destroy incomplete or zero-length arrays.
5777
+ if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
5778
+ return;
5779
+
5780
+ QualType FieldType = Context.getBaseElementType(Field->getType());
5781
+
5782
+ const RecordType *RT = FieldType->getAs<RecordType>();
5783
+ if (!RT)
5784
+ return;
5785
+
5786
+ CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5787
+ if (FieldClassDecl->isInvalidDecl())
5788
+ return;
5789
+ if (FieldClassDecl->hasIrrelevantDestructor())
5790
+ return;
5791
+ // The destructor for an implicit anonymous union member is never invoked.
5792
+ if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
5793
+ return;
5794
+
5795
+ CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
5796
+ // Dtor might still be missing, e.g because it's invalid.
5797
+ if (!Dtor)
5798
+ return;
5799
+ CheckDestructorAccess(Field->getLocation(), Dtor,
5800
+ PDiag(diag::err_access_dtor_field)
5801
+ << Field->getDeclName() << FieldType);
5802
+
5803
+ MarkFunctionReferenced(Location, Dtor);
5804
+ DiagnoseUseOfDecl(Dtor, Location);
5805
+ }
5806
+
5762
5807
void
5763
5808
Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
5764
5809
CXXRecordDecl *ClassDecl) {
@@ -5774,39 +5819,7 @@ Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
5774
5819
5775
5820
// Non-static data members.
5776
5821
for (auto *Field : ClassDecl->fields()) {
5777
- if (Field->isInvalidDecl())
5778
- continue;
5779
-
5780
- // Don't destroy incomplete or zero-length arrays.
5781
- if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
5782
- continue;
5783
-
5784
- QualType FieldType = Context.getBaseElementType(Field->getType());
5785
-
5786
- const RecordType* RT = FieldType->getAs<RecordType>();
5787
- if (!RT)
5788
- continue;
5789
-
5790
- CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5791
- if (FieldClassDecl->isInvalidDecl())
5792
- continue;
5793
- if (FieldClassDecl->hasIrrelevantDestructor())
5794
- continue;
5795
- // The destructor for an implicit anonymous union member is never invoked.
5796
- if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
5797
- continue;
5798
-
5799
- CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
5800
- // Dtor might still be missing, e.g because it's invalid.
5801
- if (!Dtor)
5802
- continue;
5803
- CheckDestructorAccess(Field->getLocation(), Dtor,
5804
- PDiag(diag::err_access_dtor_field)
5805
- << Field->getDeclName()
5806
- << FieldType);
5807
-
5808
- MarkFunctionReferenced(Location, Dtor);
5809
- DiagnoseUseOfDecl(Dtor, Location);
5822
+ MarkFieldDestructorReferenced(Location, Field);
5810
5823
}
5811
5824
5812
5825
// We only potentially invoke the destructors of potentially constructed
0 commit comments