Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:CaughtType

584       QualType CaughtType = C->getCaughtType();
585 CaughtType = CaughtType.getNonReferenceType().getUnqualifiedType();
588 if (CaughtType->isObjCObjectPointerType())
589 TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType);
591 TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true);
936 QualType CaughtType = cast<ReferenceType>(CatchType)->getPointeeType();
937 bool EndCatchMightThrow = CaughtType->isRecordType();
945 if (const PointerType *PT = dyn_cast<PointerType>(CaughtType)) {