Lines Matching defs:NegC
479 Constant *NegC = ConstantExpr::getNeg(ImmC);
480 return SelectInst::Create(X, NegC, ConstantInt::getNullValue(Ty));
487 Constant *NegC = ConstantExpr::getNeg(ImmC);
489 return SelectInst::Create(IsNeg, NegC, ConstantInt::getNullValue(Ty));
977 if (Constant *NegC = ConstantFoldUnaryOpOperand(Instruction::FNeg, C, DL))
978 return BinaryOperator::CreateFMulFMF(X, NegC, &I);
1783 Constant *NegC = ConstantInt::get(Ty, -(*Op1C));
1784 Instruction *BO = BinaryOperator::CreateSDiv(X, NegC);
1862 if (Constant *NegC = ConstantFoldUnaryOpOperand(Instruction::FNeg, C, DL))
1863 return BinaryOperator::CreateFDivFMF(X, NegC, &I);
1907 if (Constant *NegC = ConstantFoldUnaryOpOperand(Instruction::FNeg, C, DL))
1908 return BinaryOperator::CreateFDivFMF(NegC, X, &I);