Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NotCond

930       Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName());
931 return BinaryOperator::CreateAnd(NotCond, FalseVal);
939 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName());
940 return BinaryOperator::CreateOr(NotCond, TrueVal);
975 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName());
976 return new ZExtInst(NotCond, SelType);
981 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName());
982 return new SExtInst(NotCond, SelType);