Searched defs:AdjustedRHS (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp502 Constant *AdjustedRHS; local
504 AdjustedRHS = ConstantInt::get(CI->getContext(), CI->getValue() + 1);
506 AdjustedRHS = ConstantInt::get(CI->getContext(), CI->getValue() - 1);
510 if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
511 (CmpLHS == FalseVal && AdjustedRHS == TrueVal))
519 Constant *sextRHS = ConstantExpr::getSExt(AdjustedRHS, SelectTy);
528 AdjustedRHS = sextRHS;
532 AdjustedRHS = sextRHS;
534 Constant *zextRHS = ConstantExpr::getZExt(AdjustedRHS, SelectTy);
542 AdjustedRHS
[all...]

Completed in 100 milliseconds