Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp13302 const llvm::APInt &LeftSideValue = LHSInt->getValue(); in diagnoseXorMisusedAsPow() local
13304 if (LeftSideValue != 2 && LeftSideValue != 10) in diagnoseXorMisusedAsPow()
13307 if (LeftSideValue.getBitWidth() != RightSideValue.getBitWidth()) in diagnoseXorMisusedAsPow()
13352 const llvm::APInt XorValue = LeftSideValue ^ RightSideValue; in diagnoseXorMisusedAsPow()
13354 if (LeftSideValue == 2 && RightSideIntValue >= 0) { in diagnoseXorMisusedAsPow()
13357 llvm::APInt One = (LeftSideValue - 1); in diagnoseXorMisusedAsPow()
13379 } else if (LeftSideValue == 10) { in diagnoseXorMisusedAsPow()