diff options
Diffstat (limited to 'src/math/arm/sqrtf.c')
-rw-r--r-- | src/math/arm/sqrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/arm/sqrtf.c b/src/math/arm/sqrtf.c index 98858ecd..32693293 100644 --- a/src/math/arm/sqrtf.c +++ b/src/math/arm/sqrtf.c @@ -1,6 +1,6 @@ #include <math.h> -#if __ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__) +#if (__ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)) && !BROKEN_VFP_ASM float sqrtf(float x) { |