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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1360 APFloat C3V = C1V; // copy for modification local
1365 (void)C3V.add(C2V, APFloat::rmNearestTiesToEven);
1366 return ConstantFP::get(C1->getContext(), C3V);
1368 (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven);
1369 return ConstantFP::get(C1->getContext(), C3V);
1371 (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven);
1372 return ConstantFP::get(C1->getContext(), C3V);
1374 (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven);
1375 return ConstantFP::get(C1->getContext(), C3V);
1377 (void)C3V
[all...]

Completed in 64 milliseconds