File tree 1 file changed +22
-3
lines changed
utils/bazel/llvm-project-overlay/libc 1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -540,6 +540,7 @@ libc_support_library(
540
540
":__support_cpp_bit" ,
541
541
":__support_cpp_limits" ,
542
542
":__support_cpp_optional" ,
543
+ ":__support_cpp_string_view" ,
543
544
":__support_ctype_utils" ,
544
545
":__support_fputil_dyadic_float" ,
545
546
":__support_fputil_fenv_impl" ,
@@ -1874,11 +1875,29 @@ libc_math_function(name = "llroundf")
1874
1875
1875
1876
libc_math_function (name = "llroundl" )
1876
1877
1877
- libc_math_function (name = "nan" )
1878
+ libc_math_function (
1879
+ name = "nan" ,
1880
+ additional_deps = [
1881
+ ":__support_str_to_float" ,
1882
+ ":errno" ,
1883
+ ],
1884
+ )
1878
1885
1879
- libc_math_function (name = "nanf" )
1886
+ libc_math_function (
1887
+ name = "nanf" ,
1888
+ additional_deps = [
1889
+ ":__support_str_to_float" ,
1890
+ ":errno" ,
1891
+ ],
1892
+ )
1880
1893
1881
- libc_math_function (name = "nanl" )
1894
+ libc_math_function (
1895
+ name = "nanl" ,
1896
+ additional_deps = [
1897
+ ":__support_str_to_float" ,
1898
+ ":errno" ,
1899
+ ],
1900
+ )
1882
1901
1883
1902
libc_math_function (name = "nearbyint" )
1884
1903
You can’t perform that action at this time.
0 commit comments