aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/f16add.cpp
diff options
context:
space:
mode:
authorOverMighty <its.overmighty@gmail.com>2024-07-03 01:27:09 +0200
committerGitHub <noreply@github.com>2024-07-02 19:27:09 -0400
commit4e567242133678c88a6cb5aeb979c6148f6a7035 (patch)
tree40edd48dacb95ff0e44c9aea4ad31b71cff45d24 /libc/src/math/generic/f16add.cpp
parent4b28b3fae4eb0808a135a7ec73a2f4a7257a6652 (diff)
downloadllvm-4e567242133678c88a6cb5aeb979c6148f6a7035.zip
llvm-4e567242133678c88a6cb5aeb979c6148f6a7035.tar.gz
llvm-4e567242133678c88a6cb5aeb979c6148f6a7035.tar.bz2
[libc][math][c23] Add f16{add,sub}{,l,f128} C23 math functions (#97072)
Part of #93566.
Diffstat (limited to 'libc/src/math/generic/f16add.cpp')
-rw-r--r--libc/src/math/generic/f16add.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/libc/src/math/generic/f16add.cpp b/libc/src/math/generic/f16add.cpp
new file mode 100644
index 0000000..ef9b43e
--- /dev/null
+++ b/libc/src/math/generic/f16add.cpp
@@ -0,0 +1,19 @@
+//===-- Implementation of f16add 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/f16add.h"
+#include "src/__support/FPUtil/generic/add_sub.h"
+#include "src/__support/common.h"
+
+namespace LIBC_NAMESPACE {
+
+LLVM_LIBC_FUNCTION(float16, f16add, (double x, double y)) {
+ return fputil::generic::add<float16>(x, y);
+}
+
+} // namespace LIBC_NAMESPACE