[libc-commits] [libc] [llvm] [libc] use constexpr for sinpif (PR #176580)
via libc-commits
libc-commits at lists.llvm.org
Sat Jan 17 10:14:33 PST 2026
================
@@ -3325,6 +3325,12 @@ libc_support_library(
],
)
+libc_support_library(
+ name = "__support_math_sinpif",
+ hdrs = ["src/__support/math/sinpif.h"],
+ deps = [":__support_sincosf_utils",],
----------------
AnonMiraj wrote:
make sure that all dependencies are included
```suggestion
deps = [
":__support_common",
":__support_fputil_fenv_impl",
":__support_fputil_fp_bits",
":__support_fputil_multiply_add",
":__support_fputil_polyeval",
":__support_fputil_sqrt",
":__support_macros_optimization",
":__support_sincosf_utils",
],
```
https://github.com/llvm/llvm-project/pull/176580
More information about the libc-commits
mailing list