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

via libc-commits libc-commits at lists.llvm.org
Thu Apr 24 08:36:52 PDT 2025


================
@@ -43,6 +43,7 @@ endfunction()
 add_math_entrypoint_object(acos)
 add_math_entrypoint_object(acosf)
 add_math_entrypoint_object(acosf16)
+add_math_entrypoint_object(acospif16)
 
 add_math_entrypoint_object(acosh)
 add_math_entrypoint_object(acoshf)
----------------
overmighty wrote:

Nit: should be grouped/sorted like this:

```cmake
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