Home
last modified time | relevance | path

Searched refs:C3V (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/IR/
DConstantFold.cpp1167 APFloat C3V = C1V; // copy for modification in ConstantFoldBinaryInstruction() local
1172 (void)C3V.add(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1173 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1175 (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1176 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1178 (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1179 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1181 (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1182 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1184 (void)C3V.mod(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
[all …]