Searched refs:LHSIntVal (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1531 Value *LHSIntVal = LHSConv->getOperand(0); local
1554 if (IsValidPromotion(FPType, LHSIntVal->getType())) {
1556 ConstantExpr::getFPToSI(CFP, LHSIntVal->getType());
1559 willNotOverflowSignedAdd(LHSIntVal, CI, I)) {
1561 Value *NewAdd = Builder.CreateNSWAdd(LHSIntVal, CI, "addconv");
1571 if (IsValidPromotion(FPType, LHSIntVal->getType())) {
1575 if (LHSIntVal->getType() == RHSIntVal->getType() &&
1577 willNotOverflowSignedAdd(LHSIntVal, RHSIntVal, I)) {
1579 Value *NewAdd = Builder.CreateNSWAdd(LHSIntVal, RHSIntVal, "addconv");

Completed in 55 milliseconds