Searched refs:ValToCheck (Results 1 - 1 of 1) sorted by last modified time

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2545 APInt ValToCheck = Op0KnownZeroInverted; local
2546 if (ValToCheck.isPowerOf2()) {
2547 unsigned CmpVal = ValToCheck.countTrailingZeros();
2550 } else if ((++ValToCheck).isPowerOf2()) {
2551 unsigned CmpVal = ValToCheck.countTrailingZeros() - 1;
2590 APInt ValToCheck = Op0KnownZeroInverted; local
2591 if (ValToCheck.isPowerOf2()) {
2592 unsigned CmpVal = ValToCheck.countTrailingZeros();
2595 } else if ((++ValToCheck).isPowerOf2()) {
2596 unsigned CmpVal = ValToCheck
[all...]

Completed in 244 milliseconds