diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index 347a0af6968452f3a867d3f248e84a8e6a5706a0..bda3cf7e6f0033b5431317e6114e26516b74deca 100644 --- a/clang/lib/CodeGen/CGDecl.cpp +++ b/clang/lib/CodeGen/CGDecl.cpp @@ -433,12 +433,16 @@ void CodeGenFunction::EmitLocalBlockVarDecl(const VarDecl &D) { } // Handle CXX destruction of variables. - // FIXME - destruction of arrays NYI. - if (const RecordType *RT = Ty->getAs()) + QualType DtorTy(Ty); + if (const ArrayType *Array = DtorTy->getAs()) + DtorTy = Array->getElementType(); + if (const RecordType *RT = DtorTy->getAs()) if (CXXRecordDecl *ClassDecl = dyn_cast(RT->getDecl())) { if (!ClassDecl->hasTrivialDestructor()) { const CXXDestructorDecl *D = ClassDecl->getDestructor(getContext()); assert(D && "EmitLocalBlockVarDecl - destructor is nul"); + assert(!Ty->getAs() && "FIXME - destruction of arrays NYI"); + CleanupScope scope(*this); EmitCXXDestructorCall(D, Dtor_Complete, DeclPtr); }