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

References

lib/CodeGen/CodeGenPrepare.cpp
 1238   if (Pred == ICmpInst::ICMP_EQ && match(B, m_AllOnes()))
 1239     B = ConstantInt::get(B->getType(), 1);
 1239     B = ConstantInt::get(B->getType(), 1);
 1240   else if (Pred == ICmpInst::ICMP_NE && match(B, m_ZeroInt()))
 1241     B = ConstantInt::get(B->getType(), -1);
 1241     B = ConstantInt::get(B->getType(), -1);
 1248     if (match(U, m_Add(m_Specific(A), m_Specific(B)))) {