diff options
author | Haojian Wu <hokein.wu@gmail.com> | 2023-11-10 10:04:02 +0100 |
---|---|---|
committer | Haojian Wu <hokein.wu@gmail.com> | 2023-11-10 10:04:19 +0100 |
commit | d4517210064ac505f22d42d30fa14aa746efe76f (patch) | |
tree | 234f754ac1446fc8730bad260fdaa03b48b84780 | |
parent | ccb77728d0c02ca3146adf377c308a6327aa40c0 (diff) | |
download | llvm-d4517210064ac505f22d42d30fa14aa746efe76f.zip llvm-d4517210064ac505f22d42d30fa14aa746efe76f.tar.gz llvm-d4517210064ac505f22d42d30fa14aa746efe76f.tar.bz2 |
[bazel] Add missing deps for libc's exp2f_impl and exp10f_impl targets.
-rw-r--r-- | utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel index bebe175..612d5a8 100644 --- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel @@ -1191,6 +1191,7 @@ libc_support_library( name = "exp10f_impl", hdrs = ["src/math/generic/exp10f_impl.h"], deps = [ + ":__support_fputil_basic_operations", ":__support_fputil_fma", ":__support_fputil_multiply_add", ":__support_fputil_nearest_integer", @@ -1206,6 +1207,7 @@ libc_support_library( name = "exp2f_impl", hdrs = ["src/math/generic/exp2f_impl.h"], deps = [ + ":__support_fputil_except_value_utils", ":__support_fputil_fma", ":__support_fputil_multiply_add", ":__support_fputil_nearest_integer", |