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

References

lib/CodeGen/CodeGenPrepare.cpp
 1288   if (isa<Constant>(A) && isa<Constant>(B))
 1294     std::swap(A, B);
 1298   if (Pred == ICmpInst::ICMP_EQ && match(B, m_ZeroInt())) {
 1299     B = ConstantInt::get(B->getType(), 1);
 1299     B = ConstantInt::get(B->getType(), 1);
 1303   if (Pred == ICmpInst::ICMP_NE && match(B, m_ZeroInt())) {
 1304     std::swap(A, B);
 1313   Value *CmpVariableOperand = isa<Constant>(A) ? B : A;
 1317     if (match(U, m_Sub(m_Specific(A), m_Specific(B)))) {
 1325         match(B, m_APInt(CmpC)) && *AddC == -(*CmpC)) {