Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NotCond

747       Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
748 return BinaryOperator::CreateAnd(NotCond, FalseVal);
756 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
757 return BinaryOperator::CreateOr(NotCond, TrueVal);
788 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
789 return new ZExtInst(NotCond, SI.getType());
794 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
795 return new SExtInst(NotCond, SI.getType());