Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:CaughtType

596       QualType CaughtType = C->getCaughtType();
597 CaughtType = CaughtType.getNonReferenceType().getUnqualifiedType();
600 if (CaughtType->isObjCObjectPointerType())
601 TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType);
603 TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true);
948 QualType CaughtType = cast<ReferenceType>(CatchType)->getPointeeType();
949 bool EndCatchMightThrow = CaughtType->isRecordType();
957 if (const PointerType *PT = dyn_cast<PointerType>(CaughtType)) {