[libc-commits] [libc] [libc][math][c23] add entry points and tests for fsqrt (PR #99669)
via libc-commits
libc-commits at lists.llvm.org
Sat Jul 20 15:20:05 PDT 2024
================
@@ -0,0 +1,20 @@
+//===-- Implementation header for fsqrtf128 ---------------------*- C++ -*-===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_SRC_MATH_FSQRTF128_H
+#define LLVM_LIBC_SRC_MATH_FSQRTF128_H
+
+#include "src/__support/macros/config.h"
----------------
overmighty wrote:
Should add an `#include` for `float128`.
```suggestion
#include "src/__support/macros/config.h"
#include "src/__support/macros/properties/types.h"
```
https://github.com/llvm/llvm-project/pull/99669
More information about the libc-commits
mailing list