Searched refs:C3V (Results 1 – 1 of 1) sorted by relevance
1195 APFloat C3V = C1V; // copy for modification in ConstantFoldBinaryInstruction() local1200 (void)C3V.add(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1201 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1203 (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1204 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1206 (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1207 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1209 (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1210 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1212 (void)C3V.mod(C2V); in ConstantFoldBinaryInstruction()[all …]