[clang] [clang] Fix crash when destructor definition is preceded with '=' (PR #90220)

Vlad Serebrennikov via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 30 10:45:10 PDT 2024


================
@@ -3893,9 +3893,12 @@ namespace {
     }
 
     void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E) {
-      if (E->getTemporary()->getDestructor()->isTrivial()) {
-        Inherited::VisitStmt(E);
-        return;
+      if (const CXXDestructorDecl *DtorDecl =
+              E->getTemporary()->getDestructor()) {
+        if (DtorDecl->isTrivial()) {
+          Inherited::VisitStmt(E);
+          return;
+        }
----------------
Endilll wrote:

Comments added.

https://github.com/llvm/llvm-project/pull/90220


More information about the cfe-commits mailing list