[libc-commits] [libc] [libc][math][c23] Add asinhf16() function (PR #131351)

via libc-commits libc-commits at lists.llvm.org
Sun Mar 16 14:33:33 PDT 2025


================
@@ -0,0 +1,84 @@
+//===-- Half-precision asinhf16(x) function--------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
+//
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/math/asinhf16.h"
+#include "src/__support/FPUtil/except_value_utils.h"
+#include "src/__support/FPUtil/generic/sqrt.h"
+#include "src/__support/FPUtil/multiply_add.h"
+#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
+#include "src/__support/macros/properties/types.h"
+#include "src/math/generic/explogxf.h"
----------------
overmighty wrote:

Missing include for `"src/__support/FPUtil/cast.h"`.

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


More information about the libc-commits mailing list