Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp13072 int64_t RightSideIntValue = RightSideValue.getSExtValue(); in diagnoseXorMisusedAsPow() local
13073 if (LeftSideValue == 2 && RightSideIntValue >= 0) { in diagnoseXorMisusedAsPow()
13079 if (RightSideIntValue < 64) in diagnoseXorMisusedAsPow()
13083 else if (RightSideIntValue == 64) in diagnoseXorMisusedAsPow()
13093 ExprRange, (RightSideIntValue == 0) ? "1" : SuggestedExpr); in diagnoseXorMisusedAsPow()
13099 std::string SuggestedValue = "1e" + std::to_string(RightSideIntValue); in diagnoseXorMisusedAsPow()