[llvm] [bazel][libc] Port #153993: nextafter (PR #155018)

via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 22 12:25:55 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: Jordan Rupprecht (rupprecht)

<details>
<summary>Changes</summary>



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


1 Files Affected:

- (modified) utils/bazel/llvm-project-overlay/libc/test/src/math/smoke/BUILD.bazel (+5) 


``````````diff
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 6d9d1d6a33255..087c3a62472e6 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
@@ -1174,26 +1174,31 @@ math_test(
 math_test(
     name = "nextafter",
     hdrs = ["NextAfterTest.h"],
+    deps = ["//libc:__support_sign"],
 )
 
 math_test(
     name = "nextafterf",
     hdrs = ["NextAfterTest.h"],
+    deps = ["//libc:__support_sign"],
 )
 
 math_test(
     name = "nextafterl",
     hdrs = ["NextAfterTest.h"],
+    deps = ["//libc:__support_sign"],
 )
 
 math_test(
     name = "nextafterf128",
     hdrs = ["NextAfterTest.h"],
+    deps = ["//libc:__support_sign"],
 )
 
 math_test(
     name = "nextafterf16",
     hdrs = ["NextAfterTest.h"],
+    deps = ["//libc:__support_sign"],
 )
 
 math_test(

``````````

</details>


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


More information about the llvm-commits mailing list