[Bazel] Fixes de7cacd - #216949
Merged
d0k merged 1 commit intoAug 18, 2026
Merged
Conversation
forking-google-bazel-bot
Bot
requested review from
kaladron and
labath
as code owners
August 18, 2026 08:22
labath
approved these changes
Aug 18, 2026
|
@llvm/pr-subscribers-libc Author: forking-google-bazel-bot[bot] ChangesThis fixes de7cacd (#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:
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(
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This fixes de7cacd (#216552).
Buildkite error link: https://buildkite.com/llvm-project/upstream-bazel/builds?commit=de7cacd2406aa805a463f26563b4f55811842ba0