[libc-commits] [libc] [llvm] [libc][math] Refactor sinf implementation to header-only in src/__support/math folder. (PR #177963)
Muhammad Bassiouni via libc-commits
libc-commits at lists.llvm.org
Mon Jan 26 09:00:37 PST 2026
================
@@ -0,0 +1,194 @@
+//===-- Single-precision sin 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LIBC_SRC___SUPPORT_MATH_SINF_H
+#define LIBC_SRC___SUPPORT_MATH_SINF_H
----------------
bassiounix wrote:
```suggestion
#ifndef LLVM_LIBC_SRC___SUPPORT_MATH_SINF_H
#define LLVM_LIBC_SRC___SUPPORT_MATH_SINF_H
```
https://github.com/llvm/llvm-project/pull/177963
More information about the libc-commits
mailing list