Home | History | Annotate | Download | only in Utils

Lines Matching defs:isEQ

430   /// match depending on isEQ).
435 bool matchInstruction(Instruction *I, bool isEQ) {
450 if (ICI->getPredicate() == (isEQ ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE)) {
555 if (!isEQ)
582 bool isEQ = (I->getOpcode() == Instruction::Or);
596 // If it is a || (or && depending on isEQ), process the operands.
597 if (I->getOpcode() == (isEQ ? Instruction::Or : Instruction::And)) {
606 if (matchInstruction(I, isEQ))