Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp12290 int64_t RightSideIntValue = RightSideValue.getSExtValue(); in diagnoseXorMisusedAsPow() local
12291 if (LeftSideValue == 2 && RightSideIntValue >= 0) { in diagnoseXorMisusedAsPow()
12297 if (RightSideIntValue < 64) in diagnoseXorMisusedAsPow()
12301 else if (RightSideIntValue == 64) in diagnoseXorMisusedAsPow()
12310 ExprRange, (RightSideIntValue == 0) ? "1" : SuggestedExpr); in diagnoseXorMisusedAsPow()
12315 std::string SuggestedValue = "1e" + std::to_string(RightSideIntValue); in diagnoseXorMisusedAsPow()