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

/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp970 const APFloat &FpVal = Divisor->getValueAPF(); local
971 APFloat Reciprocal(FpVal.getSemantics());
972 bool Cvt = FpVal.getExactInverse(&Reciprocal);
974 if (!Cvt && AllowReciprocal && FpVal.isFiniteNonZero()) {
975 Reciprocal = APFloat(FpVal.getSemantics(), 1.0f);
976 (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven);

Completed in 91 milliseconds