Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp13798 int64_t RightSideIntValue = RightSideValue.getSExtValue(); in diagnoseXorMisusedAsPow() local
13799 if (LeftSideValue == 2 && RightSideIntValue >= 0) { in diagnoseXorMisusedAsPow()
13805 if (RightSideIntValue < 64) in diagnoseXorMisusedAsPow()
13809 else if (RightSideIntValue == 64) in diagnoseXorMisusedAsPow()
13819 ExprRange, (RightSideIntValue == 0) ? "1" : SuggestedExpr); in diagnoseXorMisusedAsPow()
13825 std::string SuggestedValue = "1e" + std::to_string(RightSideIntValue); in diagnoseXorMisusedAsPow()