[libc] [llvm] [libc][math][c23] Add rsqrtf() function (PR #159615)
Anton Shepelev via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 4 10:43:43 PDT 2025
================
@@ -4510,6 +4502,21 @@ libc_math_function(name = "roundevenf128")
libc_math_function(name = "roundevenf16")
+libc_math_function(
+ name = "rsqrtf",
+ additional_deps = [
+ ":__support_math_rsqrtf",
+ ],
+)
+
+libc_math_function(
+ name = "rsqrtf16",
+ additional_deps = [
+ ":__support_math_rsqrtf16",
+ ":errno",
+ ],
+)
----------------
amemov wrote:
Will remove that
https://github.com/llvm/llvm-project/pull/159615
More information about the llvm-commits
mailing list