mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 06:32:05 +03:00
arm fabs and sqrt: support single-precision-only fpu variants
This commit is contained in:
parent
c8c3e341fb
commit
6e98924890
@ -1,6 +1,6 @@
|
||||
#include <math.h>
|
||||
|
||||
#if __ARM_PCS_VFP
|
||||
#if __ARM_PCS_VFP && __ARM_FP&8
|
||||
|
||||
double fabs(double x)
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include <math.h>
|
||||
|
||||
#if __ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)
|
||||
#if (__ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)) && (__ARM_FP&8)
|
||||
|
||||
double sqrt(double x)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user