Lines Matching defs:NegC
485 Constant *NegC = ConstantExpr::getNeg(ImmC);
486 return SelectInst::Create(X, NegC, ConstantInt::getNullValue(Ty));
493 Constant *NegC = ConstantExpr::getNeg(ImmC);
495 return SelectInst::Create(IsNeg, NegC, ConstantInt::getNullValue(Ty));
907 if (Constant *NegC = ConstantFoldUnaryOpOperand(Instruction::FNeg, C, DL))
908 return BinaryOperator::CreateFMulFMF(X, NegC, &I);
1653 Constant *NegC = ConstantInt::get(Ty, -(*Op1C));
1654 Instruction *BO = BinaryOperator::CreateSDiv(X, NegC);
1732 if (Constant *NegC = ConstantFoldUnaryOpOperand(Instruction::FNeg, C, DL))
1733 return BinaryOperator::CreateFDivFMF(X, NegC, &I);
1777 if (Constant *NegC = ConstantFoldUnaryOpOperand(Instruction::FNeg, C, DL))
1778 return BinaryOperator::CreateFDivFMF(NegC, X, &I);