aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJorge Gorbe Moya <jgorbe@google.com>2024-04-17 10:20:07 -0700
committerJorge Gorbe Moya <jgorbe@google.com>2024-04-17 10:20:25 -0700
commit676d3bafc09d0c331a04b813804407334de12917 (patch)
tree27cb8e307129508085e570b068881ba44f21e7de /utils
parente59632bdfd4c70caed437216af17d335858686fd (diff)
downloadllvm-676d3bafc09d0c331a04b813804407334de12917.zip
llvm-676d3bafc09d0c331a04b813804407334de12917.tar.gz
llvm-676d3bafc09d0c331a04b813804407334de12917.tar.bz2
[bazel][libc] Add missing dep after b854a2323337be2633b1135f590678a17e9d1ade
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/libc/BUILD.bazel7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index 6029cc3..be02c22 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -786,7 +786,7 @@ libc_support_library(
":errno",
":hdr_fenv_macros",
":hdr_math_macros",
- ":types_fenv_t"
+ ":types_fenv_t",
],
)
@@ -1152,6 +1152,7 @@ libc_function(
deps = [
":__support_common",
":__support_fputil_fenv_impl",
+ ":types_fexcept_t",
],
)
@@ -1272,7 +1273,7 @@ libc_function(
deps = [
":__support_common",
":__support_fputil_fenv_impl",
- ":types_fexcept_t"
+ ":types_fexcept_t",
],
)
@@ -1283,7 +1284,7 @@ libc_function(
deps = [
":__support_common",
":__support_fputil_fenv_impl",
- ":types_fexcept_t",
+ ":types_fexcept_t",
],
)