Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenExprScalar.cpp433 QualType promotedType; in emitScalarPrePostIncDec() local
436 promotedType = cgf.getContext().getPromotedIntegerType(type); in emitScalarPrePostIncDec()
437 assert(promotedType != type && "Shouldn't promote to the same type."); in emitScalarPrePostIncDec()
441 cgf.getContext().getCanonicalType(promotedType); in emitScalarPrePostIncDec()
443 type->isIntegerType() && promotedType->isIntegerType(); in emitScalarPrePostIncDec()
451 promotedType->isSignedIntegerOrEnumerationType() || in emitScalarPrePostIncDec()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp3130 QualType promotedType; in EmitScalarPrePostIncDec() local
3137 promotedType = CGF.getContext().getPromotedIntegerType(type); in EmitScalarPrePostIncDec()
3138 assert(promotedType != type && "Shouldn't promote to the same type."); in EmitScalarPrePostIncDec()
3142 CGF.getContext().getCanonicalType(promotedType); in EmitScalarPrePostIncDec()
3145 type, promotedType); in EmitScalarPrePostIncDec()
3148 promotedType->isSignedIntegerOrEnumerationType() || in EmitScalarPrePostIncDec()
3150 ConvertType(promotedType)->getScalarSizeInBits()) && in EmitScalarPrePostIncDec()
3172 value = EmitScalarConversion(value, type, promotedType, E->getExprLoc()); in EmitScalarPrePostIncDec()
3183 SrcType = promotedType; in EmitScalarPrePostIncDec()
3186 value = EmitScalarConversion(value, promotedType, type, E->getExprLoc(), in EmitScalarPrePostIncDec()