Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Sema/
DSemaExpr.cpp10738 QualType LHSExprType = LHS.get()->getType(); in DiagnoseBadShiftValues() local
10739 uint64_t LeftSize = S.Context.getTypeSize(LHSExprType); in DiagnoseBadShiftValues()
10740 if (LHSExprType->isExtIntType()) in DiagnoseBadShiftValues()
10741 LeftSize = S.Context.getIntWidth(LHSExprType); in DiagnoseBadShiftValues()
10742 else if (LHSExprType->isFixedPointType()) { in DiagnoseBadShiftValues()
10743 auto FXSema = S.Context.getFixedPointSemantics(LHSExprType); in DiagnoseBadShiftValues()
10755 if (Opc != BO_Shl || LHSExprType->isFixedPointType()) in DiagnoseBadShiftValues()