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

References

lib/Transforms/InstCombine/InstCombineSelect.cpp
 1031   if (!Cmp.hasOneUse() || !isa<Constant>(Cmp.getOperand(1)))
 1031   if (!Cmp.hasOneUse() || !isa<Constant>(Cmp.getOperand(1)))
 1050   bool CmpUsesNegatedOp = match(Cmp.getOperand(0), m_Neg(m_Specific(TVal))) ||
 1051                           match(Cmp.getOperand(0), m_Neg(m_Specific(FVal)));
 1054                           match(Cmp.getOperand(1), m_ZeroInt()) &&
 1055                           Cmp.getPredicate() == ICmpInst::ICMP_SLT;
 1069     Cmp.setPredicate(ICmpInst::ICMP_SLT);
 1070     Cmp.setOperand(1, ConstantInt::getNullValue(Cmp.getOperand(0)->getType()));
 1070     Cmp.setOperand(1, ConstantInt::getNullValue(Cmp.getOperand(0)->getType()));
 1072       Cmp.setOperand(0, LHS);