aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2023-11-29 10:37:54 +0100
committerGitHub <noreply@github.com>2023-11-29 10:37:54 +0100
commite2a37e5130709e3e3df52fac97ed3f5356bc0a21 (patch)
treeb8f3f05c9f566f7bc03faf96c5e81d2afe486005 /utils
parent91e1b4a64f7df6cc51af74e91610f84ee1bdc74a (diff)
downloadllvm-e2a37e5130709e3e3df52fac97ed3f5356bc0a21.zip
llvm-e2a37e5130709e3e3df52fac97ed3f5356bc0a21.tar.gz
llvm-e2a37e5130709e3e3df52fac97ed3f5356bc0a21.tar.bz2
[libc][NFC] Fix missing LIBC_INLINE + style (#73659)
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/libc/BUILD.bazel6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index e7dc978..ffb2652 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -205,6 +205,9 @@ libc_support_library(
libc_support_library(
name = "__support_cpp_limits",
hdrs = ["src/__support/CPP/limits.h"],
+ deps = [
+ "__support_macros_attributes",
+ ],
)
libc_support_library(
@@ -672,6 +675,7 @@ libc_support_library(
name = "__support_fputil_float_properties",
hdrs = ["src/__support/FPUtil/FloatProperties.h"],
deps = [
+ ":__support_macros_attributes",
":__support_macros_properties_float",
":__support_uint128",
],
@@ -687,6 +691,7 @@ libc_support_library(
":__support_cpp_bit",
":__support_cpp_type_traits",
":__support_fputil_float_properties",
+ ":__support_macros_attributes",
":__support_uint128",
],
)
@@ -746,6 +751,7 @@ libc_support_library(
":__support_fputil_fenv_impl",
":__support_fputil_fp_bits",
":__support_fputil_rounding_mode",
+ ":__support_macros_attributes",
],
)