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

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 2169   CmpInst::Predicate Pred = Cmp.getPredicate();
 2170   if (Cmp.isEquality() && Shr->isExact() && Shr->hasOneUse() &&
 2172     return new ICmpInst(Pred, X, Cmp.getOperand(1));
 2175   if (Cmp.isEquality() && match(Shr->getOperand(0), m_APInt(ShiftVal)))
 2176     return foldICmpShrConstConst(Cmp, Shr->getOperand(1), C, *ShiftVal);
 2227   if (!Cmp.isEquality())