Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp12719 const llvm::APInt &LeftSideValue = LHSInt->getValue(); in diagnoseXorMisusedAsPow() local
12721 if (LeftSideValue != 2 && LeftSideValue != 10) in diagnoseXorMisusedAsPow()
12724 if (LeftSideValue.getBitWidth() != RightSideValue.getBitWidth()) in diagnoseXorMisusedAsPow()
12769 const llvm::APInt XorValue = LeftSideValue ^ RightSideValue; in diagnoseXorMisusedAsPow()
12771 if (LeftSideValue == 2 && RightSideIntValue >= 0) { in diagnoseXorMisusedAsPow()
12774 llvm::APInt One = (LeftSideValue - 1); in diagnoseXorMisusedAsPow()
12796 } else if (LeftSideValue == 10) { in diagnoseXorMisusedAsPow()