[libc-commits] [libc] [libc][math] Improve fmul performance by using double-double arithmetic. (PR #107517)

via libc-commits libc-commits at lists.llvm.org
Sat Sep 14 12:32:06 PDT 2024


================
@@ -5,16 +5,116 @@
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 //
 //===----------------------------------------------------------------------===//
-
 #include "src/math/fmul.h"
+#include "hdr/errno_macros.h"
+#include "hdr/fenv_macros.h"
+#include "src/__support/FPUtil/double_double.h"
 #include "src/__support/FPUtil/generic/mul.h"
 #include "src/__support/common.h"
 #include "src/__support/macros/config.h"
+#include <iostream>
----------------
lntue wrote:

Remove `<iostream>`

https://github.com/llvm/llvm-project/pull/107517


More information about the libc-commits mailing list