diff --git a/clang/lib/CIR/CodeGen/CIRGenClass.cpp b/clang/lib/CIR/CodeGen/CIRGenClass.cpp index c98d9bb0724f6..ca9fe939139cd 100644 --- a/clang/lib/CIR/CodeGen/CIRGenClass.cpp +++ b/clang/lib/CIR/CodeGen/CIRGenClass.cpp @@ -126,8 +126,7 @@ static void emitMemberInitializer(CIRGenFunction &cgf, lhs.isVolatileQualified()); // Ensure that we destroy the objects if an exception is thrown later in // the constructor. - QualType::DestructionKind dtorKind = fieldType.isDestructedType(); - assert(!cgf.needsEHCleanup(dtorKind) && + assert(!cgf.needsEHCleanup(fieldType.isDestructedType()) && "Arrays of non-record types shouldn't need EH cleanup"); return; }