Searched refs:C3V (Results 1 – 1 of 1) sorted by relevance
1173 APFloat C3V = C1V; // copy for modification in ConstantFoldBinaryInstruction() local1178 (void)C3V.add(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1179 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1181 (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1182 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1184 (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1185 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1187 (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()1188 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()1190 (void)C3V.mod(C2V); in ConstantFoldBinaryInstruction()[all …]