Lines Matching defs:NotCond
3261 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3262 return SelectInst::Create(NotCond, FalseVal, Zero);
3266 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3267 return SelectInst::Create(NotCond, One, TrueVal);
3813 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3814 return new ZExtInst(NotCond, SelType);
3819 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
3820 return new SExtInst(NotCond, SelType);
4110 Value *NotCond;
4111 if (match(CondVal, m_Not(m_Value(NotCond))) &&
4113 replaceOperand(SI, 0, NotCond);