Home
last modified time | relevance | path

Searched refs:SrcFTy (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp1118 const FunctionType *SrcFTy = nullptr; in checkCastFunctionType() local
1124 SrcFTy = SrcType->getPointeeType()->castAs<FunctionType>(); in checkCastFunctionType()
1127 SrcFTy = SrcType->castAs<FunctionType>(); in checkCastFunctionType()
1132 assert(SrcFTy && DstFTy); in checkCastFunctionType()
1134 if (Self.Context.hasSameType(SrcFTy, DstFTy)) in checkCastFunctionType()
1150 if (IsVoidVoid(SrcFTy) || IsVoidVoid(DstFTy)) in checkCastFunctionType()
1154 if (!argTypeIsABIEquivalent(SrcFTy->getReturnType(), DstFTy->getReturnType(), in checkCastFunctionType()
1159 if (SrcFTy->isFunctionNoProtoType() || DstFTy->isFunctionNoProtoType()) in checkCastFunctionType()
1164 const auto *SrcFPTy = cast<FunctionProtoType>(SrcFTy); in checkCastFunctionType()
2120 const auto *SrcFTy = in DiagnoseCallingConvCast() local
[all …]