Skip to content

Commit 556fb4c

Browse files
[libc] Disable sin/cospif16 on aarch64 (#134918)
The tests are failing and it's unclear why. Disabling for now until a fix can be implemented. See #134917 for details.
1 parent 96f95c9 commit 556fb4c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libc/config/linux/aarch64/entrypoints.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,8 @@ if(LIBC_TYPES_HAS_FLOAT16)
650650
libc.src.math.canonicalizef16
651651
libc.src.math.ceilf16
652652
libc.src.math.copysignf16
653-
libc.src.math.cospif16
653+
#TODO: Aarch64 bug https://github.com/llvm/llvm-project/issues/134917
654+
# libc.src.math.cospif16
654655
# TODO: aarch64 bug
655656
# Please see https://github.com/llvm/llvm-project/pull/100632#issuecomment-2258772681
656657
# libc.src.math.expf16
@@ -724,7 +725,8 @@ if(LIBC_TYPES_HAS_FLOAT16)
724725
libc.src.math.scalbnf16
725726
libc.src.math.setpayloadf16
726727
libc.src.math.setpayloadsigf16
727-
libc.src.math.sinpif16
728+
#TODO: Aarch64 bug https://github.com/llvm/llvm-project/issues/134917
729+
# libc.src.math.sinpif16
728730
libc.src.math.sqrtf16
729731
libc.src.math.totalorderf16
730732
libc.src.math.totalordermagf16

0 commit comments

Comments
 (0)