File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
utils/bazel/llvm-project-overlay/libc Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -1914,6 +1914,19 @@ libc_support_library(
1914
1914
],
1915
1915
)
1916
1916
1917
+ libc_support_library (
1918
+ name = "atan_utils" ,
1919
+ hdrs = ["src/math/generic/atan_utils.h" ],
1920
+ deps = [
1921
+ ":__support_integer_literals" ,
1922
+ ":__support_fputil_double_double" ,
1923
+ ":__support_fputil_dyadic_float" ,
1924
+ ":__support_fputil_multiply_add" ,
1925
+ ":__support_fputil_polyeval" ,
1926
+ ":__support_macros_optimization" ,
1927
+ ],
1928
+ )
1929
+
1917
1930
libc_support_library (
1918
1931
name = "log_range_reduction" ,
1919
1932
hdrs = ["src/math/generic/log_range_reduction.h" ],
@@ -2313,7 +2326,7 @@ libc_math_function(
2313
2326
":__support_fputil_double_double" ,
2314
2327
":__support_fputil_nearest_integer" ,
2315
2328
":__support_macros_optimization" ,
2316
- ":inv_trigf_utils " ,
2329
+ ":atan_utils " ,
2317
2330
],
2318
2331
)
2319
2332
@@ -2331,7 +2344,7 @@ libc_math_function(
2331
2344
additional_deps = [
2332
2345
":__support_fputil_double_double" ,
2333
2346
":__support_fputil_nearest_integer" ,
2334
- ":inv_trigf_utils " ,
2347
+ ":atan_utils " ,
2335
2348
],
2336
2349
)
2337
2350
You can’t perform that action at this time.
0 commit comments