Lines Matching defs:NotCond
3242 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3243 return SelectInst::Create(NotCond, FalseVal, Zero);
3247 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3248 return SelectInst::Create(NotCond, One, TrueVal);
3641 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3642 return new ZExtInst(NotCond, SelType);
3647 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3648 return new SExtInst(NotCond, SelType);
3932 Value *NotCond;
3933 if (match(CondVal, m_Not(m_Value(NotCond))) &&
3935 replaceOperand(SI, 0, NotCond);