reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineSelect.cpp
  915     AdjustedRHS = ConstantInt::get(CmpRHS->getType(), *CmpC + 1);
  917     AdjustedRHS = ConstantInt::get(CmpRHS->getType(), *CmpC - 1);
  923   if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
  924       (CmpLHS == FalseVal && AdjustedRHS == TrueVal)) {
  931     Constant *SextRHS = ConstantExpr::getSExt(AdjustedRHS, SelTy);
  939       AdjustedRHS = SextRHS;
  943       AdjustedRHS = SextRHS;
  945       Constant *ZextRHS = ConstantExpr::getZExt(AdjustedRHS, SelTy);
  952         AdjustedRHS = ZextRHS;
  956         AdjustedRHS = ZextRHS;
  968   CmpRHS = AdjustedRHS;