[libc-commits] [PATCH] D158746: [libc] Fix fputil::multiply_add and fputil::polyeval template signatures.

Joseph Huber via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu Aug 24 09:01:02 PDT 2023


jhuber6 added inline comments.


================
Comment at: libc/src/__support/FPUtil/PolyEval.h:41
+polyeval(const T &x, const T &a0, const Ts &...a) {
+  return multiply_add(x, polyeval(x, a...), a0);
+}
----------------
Isn't this more standard?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D158746/new/

https://reviews.llvm.org/D158746



More information about the libc-commits mailing list