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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp1043 const APFloat &FpVal = cast<ConstantFP>(Divisor)->getValueAPF(); local
1044 APFloat Reciprocal(FpVal.getSemantics());
1045 bool Cvt = FpVal.getExactInverse(&Reciprocal);
1047 if (!Cvt && AllowReciprocal && FpVal.isFiniteNonZero()) {
1048 Reciprocal = APFloat(FpVal.getSemantics(), 1.0f);
1049 (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven);

Completed in 115 milliseconds