Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Cond1

5398     //   %cond1 = icmp|fcmp|binary instruction ...
5400 // %cond.or = or|and i1 %cond1, cond2
5412 Value *Cond1, *Cond2;
5413 if (match(LogicOp, m_And(m_OneUse(m_Value(Cond1)),
5416 else if (match(LogicOp, m_Or(m_OneUse(m_Value(Cond1)),
5422 if (!match(Cond1, m_CombineOr(m_Cmp(), m_BinOp())) ||
5437 Br1->setCondition(Cond1);