[libc-commits] [libc] [libc][math][c23] Add acospif16() function (PR #134664)

via libc-commits libc-commits at lists.llvm.org
Thu Apr 24 12:10:07 PDT 2025


================
@@ -41,13 +41,14 @@ function(add_math_entrypoint_object name)
 endfunction()
 
 add_math_entrypoint_object(acos)
-add_math_entrypoint_object(acosf)
-add_math_entrypoint_object(acosf16)
-
 add_math_entrypoint_object(acosh)
+add_math_entrypoint_object(acosf)
 add_math_entrypoint_object(acoshf)
+add_math_entrypoint_object(acosf16)
 add_math_entrypoint_object(acoshf16)
 
+add_math_entrypoint_object(acospif16)
+ 
 add_math_entrypoint_object(asin)
 add_math_entrypoint_object(asinf)
 add_math_entrypoint_object(asinf16)
----------------
overmighty wrote:

I meant putting `acospif16` between the `acosh*` and `asin*` functions, like this:

```suggestion
add_math_entrypoint_object(acos)
add_math_entrypoint_object(acosf)
add_math_entrypoint_object(acosf16)

add_math_entrypoint_object(acosh)
add_math_entrypoint_object(acoshf)
add_math_entrypoint_object(acoshf16)

add_math_entrypoint_object(acospif16)

add_math_entrypoint_object(asin)
add_math_entrypoint_object(asinf)
add_math_entrypoint_object(asinf16)
```

https://github.com/llvm/llvm-project/pull/134664


More information about the libc-commits mailing list