[llvm] [Bazel] Fixes de7cacd (PR #216949)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 18 02:18:36 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: forking-google-bazel-bot[bot]
<details>
<summary>Changes</summary>
This fixes de7cacd2406aa805a463f26563b4f55811842ba0 (#<!-- -->216552).
Buildkite error link: https://buildkite.com/llvm-project/upstream-bazel/builds?commit=de7cacd2406aa805a463f26563b4f55811842ba0
---
Full diff: https://github.com/llvm/llvm-project/pull/216949.diff
2 Files Affected:
- (modified) utils/bazel/llvm-project-overlay/libc/BUILD.bazel (+3)
- (modified) utils/bazel/llvm-project-overlay/libc/test/src/math/smoke/BUILD.bazel (+3)
``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index e5fdbebcf50d0..28c017fb6779c 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -8045,6 +8045,7 @@ libc_support_library(
name = "__support_math_floorf128",
hdrs = ["src/__support/math/floorf128.h"],
deps = [
+ ":__support_fputil_float128",
":__support_fputil_nearest_integer_operations",
":__support_macros_config",
":llvm_libc_types_float128",
@@ -11714,7 +11715,9 @@ libc_math_function(
libc_math_function(
name = "floorf128",
additional_deps = [
+ ":__support_cpp_bit",
":__support_math_floorf128",
+ ":__support_fputil_float128",
],
)
diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/math/smoke/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/math/smoke/BUILD.bazel
index 9e93796c9dc16..2eb58f3f66807 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/src/math/smoke/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/test/src/math/smoke/BUILD.bazel
@@ -477,6 +477,9 @@ math_test(
math_test(
name = "floorf128",
hdrs = ["FloorTest.h"],
+ deps = [
+ "//libc:__support_fputil_float128",
+ ],
)
math_test(
``````````
</details>
https://github.com/llvm/llvm-project/pull/216949
More information about the llvm-commits
mailing list