aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authormichaelrj-google <71531609+michaelrj-google@users.noreply.github.com>2023-11-29 13:20:14 -0800
committerGitHub <noreply@github.com>2023-11-29 13:20:14 -0800
commit73f8aa01d8b60bf4323359a9e2d45e68395ac290 (patch)
tree8f79136b4fd24fefef1c8943da020a943773595e /utils
parent328fd363daabb464670613dece6c75cf99d03410 (diff)
downloadllvm-73f8aa01d8b60bf4323359a9e2d45e68395ac290.zip
llvm-73f8aa01d8b60bf4323359a9e2d45e68395ac290.tar.gz
llvm-73f8aa01d8b60bf4323359a9e2d45e68395ac290.tar.bz2
[libc][NFC] Fix missing dep in bazel (#73854)
Patch #73469 added a dependency from __support/bit.h to __support/CPP/type_traits.h, but didn't add a dependency in the bazel. This caused downstream build failures. This patch fixes the missing dependency.
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/libc/BUILD.bazel1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index ffb2652..860efbc 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -594,6 +594,7 @@ libc_support_library(
name = "__support_bit",
hdrs = ["src/__support/bit.h"],
deps = [
+ ":__support_cpp_type_traits",
":__support_macros_attributes",
],
)