Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp12125 QualType LHSExprType = LHS.get()->getType(); in DiagnoseBadShiftValues() local
12126 uint64_t LeftSize = S.Context.getTypeSize(LHSExprType); in DiagnoseBadShiftValues()
12127 if (LHSExprType->isBitIntType()) in DiagnoseBadShiftValues()
12128 LeftSize = S.Context.getIntWidth(LHSExprType); in DiagnoseBadShiftValues()
12129 else if (LHSExprType->isFixedPointType()) { in DiagnoseBadShiftValues()
12130 auto FXSema = S.Context.getFixedPointSemantics(LHSExprType); in DiagnoseBadShiftValues()
12141 if (Opc != BO_Shl || LHSExprType->isFixedPointType()) in DiagnoseBadShiftValues()