Răsfoiți Sursa

improve macro logic for enabling arm math asm

in order to take advantage of the fpu in -mfloat-abi=softfp mode, the
__VFP_FP__ (presence of vfp fpu) was checked instead of checking for
__ARM_PCS_VFP (hardfloat EABI variant). however, the latter macro is
the one that's actually specified by the ABI documents rather than
being compiler-specific, and should also be checked in case __VFP_FP__
is not defined on some compilers or some configurations.
Rich Felker 9 ani în urmă
părinte
comite
ed97dfd979
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      src/math/arm/sqrt.c
  2. 1 1
      src/math/arm/sqrtf.c

+ 1 - 1
src/math/arm/sqrt.c

@@ -1,6 +1,6 @@
 #include <math.h>
 
-#if __VFP_FP__ && !__SOFTFP__
+#if __ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)
 
 double sqrt(double x)
 {

+ 1 - 1
src/math/arm/sqrtf.c

@@ -1,6 +1,6 @@
 #include <math.h>
 
-#if __VFP_FP__ && !__SOFTFP__
+#if __ARM_PCS_VFP || (__VFP_FP__ && !__SOFTFP__)
 
 float sqrtf(float x)
 {