[llvm] [libc][math] fix asinpi bazel deps (PR #189348)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 30 03:04:36 PDT 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: Mohamed Emad (hulxv)

<details>
<summary>Changes</summary>

Missed deps in the Bazel entry caused a failure in the CI

https://github.com/llvm/llvm-project/actions/runs/23711060270/job/69070779801

---
Full diff: https://github.com/llvm/llvm-project/pull/189348.diff


1 Files Affected:

- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+2-3) 


``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index a69ebcdb63fa7..d17af555b736b 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -3193,17 +3193,16 @@ libc_support_library(
     name = "__support_math_asinpi",
     hdrs = ["src/__support/math/asinpi.h"],
     deps = [
-        ":__support_fputil_cast",
         ":__support_fputil_double_double",
-        ":__support_fputil_except_value_utils",
+        ":__support_fputil_dyadic_float",
         ":__support_fputil_fenv_impl",
         ":__support_fputil_fp_bits",
         ":__support_fputil_multiply_add",
         ":__support_fputil_polyeval",
-        ":__support_fputil_rounding_mode",
         ":__support_fputil_sqrt",
         ":__support_macros_config",
         ":__support_macros_optimization",
+        ":__support_macros_properties_cpu_features",
         ":__support_math_asin_utils",
     ],
 )

``````````

</details>


https://github.com/llvm/llvm-project/pull/189348


More information about the llvm-commits mailing list