forked from OSchip/llvm-project
[libc] Enable copysignl, frexpl, logbl and modfl on aarch64.
This commit is contained in:
parent
8172ed91f8
commit
25ac19de4b
|
@ -15,6 +15,7 @@ set(TARGET_LIBM_ENTRYPOINTS
|
|||
# math.h entrypoints
|
||||
libc.src.math.copysign
|
||||
libc.src.math.copysignf
|
||||
libc.src.math.copysignl
|
||||
libc.src.math.ceil
|
||||
libc.src.math.ceilf
|
||||
libc.src.math.cosf
|
||||
|
@ -27,10 +28,13 @@ set(TARGET_LIBM_ENTRYPOINTS
|
|||
libc.src.math.floorf
|
||||
libc.src.math.frexp
|
||||
libc.src.math.frexpf
|
||||
libc.src.math.frexpl
|
||||
libc.src.math.logb
|
||||
libc.src.math.logbf
|
||||
libc.src.math.logbl
|
||||
libc.src.math.modf
|
||||
libc.src.math.modff
|
||||
libc.src.math.modfl
|
||||
libc.src.math.round
|
||||
libc.src.math.roundf
|
||||
libc.src.math.sincosf
|
||||
|
|
Loading…
Reference in New Issue