[libc-commits] [libc] [libc][math][c23] Add ffma{, l, f128} and fdiv{, l, f128} C23 math functions #101089 (PR #101253)
via libc-commits
libc-commits at lists.llvm.org
Mon Aug 5 11:47:59 PDT 2024
================
@@ -1271,19 +1270,22 @@ bool compare_ternary_operation_one_output(Operation op,
template bool compare_ternary_operation_one_output(Operation,
const TernaryInput<float> &,
float, double, RoundingMode);
+template bool compare_ternary_operation_one_output(Operation,
+ const TernaryInput<double> &,
+ float, double, RoundingMode);
template bool compare_ternary_operation_one_output(Operation,
const TernaryInput<double> &,
double, double,
RoundingMode);
+template bool compare_ternary_operation_one_output(
+ Operation, const TernaryInput<long double> &, double, double, RoundingMode);
+template bool compare_ternary_operation_one_output(
+ Operation, const TernaryInput<long double> &, float, double, RoundingMode);
----------------
overmighty wrote:
Nit: it was supposed to be `float` first. Did `git apply`ing the patch I sent not work?
https://github.com/llvm/llvm-project/pull/101253
More information about the libc-commits
mailing list