forked from OSchip/llvm-project
[libc] Temporarily disable arm32's sinf, cosf, sincosf entrypoints.
With correctly rounded implementations, these functions will be tested for all rounding modes. Since fegetround and fesetround are not implemented for arm32, these tests will fail in all non-default rounding modes. We will re-enable these entrypoints and tests once fegetround and fesetround are implemented for arm32.
This commit is contained in:
parent
f55dbfbd9d
commit
600172a72b
|
@ -78,7 +78,6 @@ set(TARGET_LIBC_ENTRYPOINTS
|
|||
|
||||
set(TARGET_LIBM_ENTRYPOINTS
|
||||
# math.h entrypoints
|
||||
libc.src.math.cosf
|
||||
libc.src.math.fabs
|
||||
libc.src.math.fabsf
|
||||
libc.src.math.fabsl
|
||||
|
@ -91,8 +90,6 @@ set(TARGET_LIBM_ENTRYPOINTS
|
|||
libc.src.math.fmin
|
||||
libc.src.math.fminf
|
||||
libc.src.math.fminl
|
||||
libc.src.math.sincosf
|
||||
libc.src.math.sinf
|
||||
)
|
||||
|
||||
set(TARGET_LLVMLIBC_ENTRYPOINTS
|
||||
|
|
Loading…
Reference in New Issue