Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp10851 QualType LHSExprType = LHS.get()->getType(); in DiagnoseBadShiftValues() local
10852 uint64_t LeftSize = S.Context.getTypeSize(LHSExprType); in DiagnoseBadShiftValues()
10853 if (LHSExprType->isExtIntType()) in DiagnoseBadShiftValues()
10854 LeftSize = S.Context.getIntWidth(LHSExprType); in DiagnoseBadShiftValues()
10855 else if (LHSExprType->isFixedPointType()) { in DiagnoseBadShiftValues()
10856 auto FXSema = S.Context.getFixedPointSemantics(LHSExprType); in DiagnoseBadShiftValues()
10868 if (Opc != BO_Shl || LHSExprType->isFixedPointType()) in DiagnoseBadShiftValues()