[libc-commits] [libc] [libc][math][c23] Add asinhf16 function (PR #131351)
via libc-commits
libc-commits at lists.llvm.org
Wed Mar 26 08:27:18 PDT 2025
================
@@ -0,0 +1,105 @@
+//===-- Half-precision asinh(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 "explogxf.h"
+#include "hdr/fenv_macros.h"
+#include "src/__support/FPUtil/cast.h"
----------------
overmighty wrote:
I forgot about these missing includes earlier:
```suggestion
#include "src/__support/FPUtil/FEnvImpl.h"
#include "src/__support/FPUtil/FPBits.h"
#include "src/__support/FPUtil/PolyEval.h"
#include "src/__support/FPUtil/cast.h"
```
https://github.com/llvm/llvm-project/pull/131351
More information about the libc-commits
mailing list