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

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


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

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

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

>From f6f3c1a2d3501aca22a3030c45562dd3c0658984 Mon Sep 17 00:00:00 2001
From: hulxv <hulxxv at gmail.com>
Date: Mon, 30 Mar 2026 12:02:16 +0200
Subject: [PATCH] [libc][math] fix asinpi bazel deps

---
 utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

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",
     ],
 )



More information about the llvm-commits mailing list