Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion libc/config/linux/aarch64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,6 @@ if(LIBC_TYPES_HAS_FLOAT16)
list(APPEND TARGET_LIBM_ENTRYPOINTS
# math.h C23 _Float16 entrypoints
# libc.src.math.acoshf16
libc.src.math.asinpif16
libc.src.math.canonicalizef16
libc.src.math.ceilf16
libc.src.math.copysignf16
Expand Down
1 change: 0 additions & 1 deletion libc/config/linux/x86_64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,6 @@ if(LIBC_TYPES_HAS_FLOAT16)
libc.src.math.acospif16
libc.src.math.asinf16
libc.src.math.asinhf16
libc.src.math.asinpif16
libc.src.math.atanf16
libc.src.math.atanhf16
libc.src.math.canonicalizef16
Expand Down
2 changes: 1 addition & 1 deletion libc/docs/headers/math/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ Higher Math Functions
+-----------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+----------------------------+
| asinh | |check| | | | |check| | | 7.12.5.2 | F.10.2.2 |
+-----------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+----------------------------+
| asinpi | | | | |check| | | 7.12.4.9 | F.10.1.9 |
| asinpi | | | | | | 7.12.4.9 | F.10.1.9 |
+-----------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+----------------------------+
| atan | |check| | 1 ULP | | |check| | | 7.12.4.3 | F.10.1.3 |
+-----------+------------------+-----------------+------------------------+----------------------+------------------------+------------------------+----------------------------+
Expand Down
7 changes: 0 additions & 7 deletions libc/include/math.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,6 @@ functions:
arguments:
- type: _Float16
guard: LIBC_TYPES_HAS_FLOAT16
- name: asinpif16
standards:
- stdc
return_type: _Float16
arguments:
- type: _Float16
guard: LIBC_TYPES_HAS_FLOAT16
- name: atan
standards:
- stdc
Expand Down
2 changes: 0 additions & 2 deletions libc/src/math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ add_math_entrypoint_object(asinh)
add_math_entrypoint_object(asinhf)
add_math_entrypoint_object(asinhf16)

add_math_entrypoint_object(asinpif16)

add_math_entrypoint_object(atan)
add_math_entrypoint_object(atanf)
add_math_entrypoint_object(atanf16)
Expand Down
21 changes: 0 additions & 21 deletions libc/src/math/asinpif16.h

This file was deleted.

19 changes: 0 additions & 19 deletions libc/src/math/generic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3918,25 +3918,6 @@ add_entrypoint_object(
libc.src.__support.macros.properties.types
)

add_entrypoint_object(
asinpif16
SRCS
asinpif16.cpp
HDRS
../asinpif16.h
DEPENDS
libc.hdr.errno_macros
libc.hdr.fenv_macros
libc.src.__support.FPUtil.cast
libc.src.__support.FPUtil.except_value_utils
libc.src.__support.FPUtil.fenv_impl
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
)

add_entrypoint_object(
atanhf
SRCS
Expand Down
127 changes: 0 additions & 127 deletions libc/src/math/generic/asinpif16.cpp

This file was deleted.

11 changes: 0 additions & 11 deletions libc/test/src/math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2282,17 +2282,6 @@ add_fp_unittest(
libc.src.math.asinf16
)

add_fp_unittest(
asinpif16_test
NEED_MPFR
SUITE
libc-math-unittests
SRCS
asinpif16_test.cpp
DEPENDS
libc.src.math.asinpif16
)

add_fp_unittest(
acosf_test
NEED_MPFR
Expand Down
40 changes: 0 additions & 40 deletions libc/test/src/math/asinpif16_test.cpp

This file was deleted.

12 changes: 0 additions & 12 deletions libc/test/src/math/smoke/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3988,18 +3988,6 @@ add_fp_unittest(
libc.src.math.asinhf16
)

add_fp_unittest(
asinpif16_test
NEED_MPFR
SUITE
libc-math-unittests
SRCS
asinpif16_test.cpp
DEPENDS
libc.src.math.asinpif16
libc.src.errno.errno
)

add_fp_unittest(
acoshf_test
SUITE
Expand Down
86 changes: 0 additions & 86 deletions libc/test/src/math/smoke/asinpif16_test.cpp

This file was deleted.

Loading
Loading