[llvm] [bazel][libc] Add missing dependency (PR #164668)
    Walter Lee via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Oct 22 10:32:18 PDT 2025
    
    
  
https://github.com/googlewalt created https://github.com/llvm/llvm-project/pull/164668
Fixes #164522.
>From a9f29c9f69c5bbe552bad2129d7fbad659a54b0b Mon Sep 17 00:00:00 2001
From: Walter Lee <waltl at google.com>
Date: Wed, 22 Oct 2025 13:30:38 -0400
Subject: [PATCH] [bazel][libc] Add missing dependency
Fixes #164522.
---
 .../libc/test/src/math/libc_math_test_rules.bzl                  | 1 +
 1 file changed, 1 insertion(+)
diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl b/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl
index d2297d51383cc..4b8a34646d637 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl
+++ b/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl
@@ -35,6 +35,7 @@ def math_test(name, hdrs = [], deps = [], **kwargs):
             "//libc:__support_fputil_manipulation_functions",
             "//libc:__support_fputil_nearest_integer_operations",
             "//libc:__support_fputil_normal_float",
+            "//libc:__support_macros_optimization",
             "//libc:__support_macros_properties_architectures",
             "//libc:__support_macros_properties_os",
             "//libc:__support_macros_properties_types",
    
    
More information about the llvm-commits
mailing list