This code was used for initial armv7 target bringup - but it hasn't been used since it was made disabled by default in ae0e8298da4e02606b389e988ae866994f0d1e3b.
The armv7 target (ARMNT) has got support for hardware float in its baseline, so there's no need for this code. There are no known cases in the wild where users build mingw-w64-crt with this enabled. Signed-off-by: Martin Storsjö <[email protected]> --- André, who added the code in 2014, in 25270b0b4f043a3ed74d62d7bae2ad3a88e96553 and later, suggested we should remove this leftover. --- mingw-w64-crt/Makefile.am | 26 +- mingw-w64-crt/configure.ac | 13 +- mingw-w64-crt/math/softmath/acosf.c | 53 ----- mingw-w64-crt/math/softmath/acosh.c | 64 ----- mingw-w64-crt/math/softmath/acoshf.c | 64 ----- mingw-w64-crt/math/softmath/acoshl.c | 68 ------ mingw-w64-crt/math/softmath/acosl.c | 57 ----- mingw-w64-crt/math/softmath/asinf.c | 66 ------ mingw-w64-crt/math/softmath/asinh.c | 50 ---- mingw-w64-crt/math/softmath/asinhf.c | 50 ---- mingw-w64-crt/math/softmath/asinhl.c | 54 ----- mingw-w64-crt/math/softmath/asinl.c | 70 ------ mingw-w64-crt/math/softmath/atan2f.c | 50 ---- mingw-w64-crt/math/softmath/atan2l.c | 54 ----- mingw-w64-crt/math/softmath/atanf.c | 56 ----- mingw-w64-crt/math/softmath/atanh.c | 52 ---- mingw-w64-crt/math/softmath/atanhf.c | 52 ---- mingw-w64-crt/math/softmath/atanhl.c | 54 ----- mingw-w64-crt/math/softmath/atanl.c | 60 ----- mingw-w64-crt/math/softmath/bsd_private.h | 47 ---- mingw-w64-crt/math/softmath/bsd_privatef.h | 47 ---- mingw-w64-crt/math/softmath/cos.c | 83 ------- mingw-w64-crt/math/softmath/cosf.c | 83 ------- mingw-w64-crt/math/softmath/cosl.c | 68 ------ mingw-w64-crt/math/softmath/e_fmod.c | 123 ---------- mingw-w64-crt/math/softmath/e_fmodf.c | 93 -------- mingw-w64-crt/math/softmath/e_pow.c | 222 ------------------ mingw-w64-crt/math/softmath/e_powf.c | 207 ---------------- mingw-w64-crt/math/softmath/e_remainder.c | 54 ----- mingw-w64-crt/math/softmath/e_remainderf.c | 53 ----- mingw-w64-crt/math/softmath/exp.c | 89 ------- mingw-w64-crt/math/softmath/exp2.c | 50 ---- mingw-w64-crt/math/softmath/exp2f.c | 50 ---- mingw-w64-crt/math/softmath/exp2l.c | 54 ----- mingw-w64-crt/math/softmath/expl.c | 83 ------- mingw-w64-crt/math/softmath/expm1.c | 66 ------ mingw-w64-crt/math/softmath/expm1f.c | 66 ------ mingw-w64-crt/math/softmath/expm1l.c | 70 ------ mingw-w64-crt/math/softmath/fmod.c | 50 ---- mingw-w64-crt/math/softmath/fmodf.c | 50 ---- mingw-w64-crt/math/softmath/fmodl.c | 54 ----- mingw-w64-crt/math/softmath/frexpl.c | 70 ------ mingw-w64-crt/math/softmath/ilogb.c | 50 ---- mingw-w64-crt/math/softmath/ilogbf.c | 50 ---- mingw-w64-crt/math/softmath/ilogbl.c | 54 ----- mingw-w64-crt/math/softmath/ldexp.c | 50 ---- mingw-w64-crt/math/softmath/ldexpl.c | 54 ----- mingw-w64-crt/math/softmath/log.c | 68 ------ mingw-w64-crt/math/softmath/log10l.c | 54 ----- mingw-w64-crt/math/softmath/log1p.c | 50 ---- mingw-w64-crt/math/softmath/log1pf.c | 50 ---- mingw-w64-crt/math/softmath/log1pl.c | 54 ----- mingw-w64-crt/math/softmath/log2.c | 50 ---- mingw-w64-crt/math/softmath/log2f.c | 50 ---- mingw-w64-crt/math/softmath/log2l.c | 54 ----- mingw-w64-crt/math/softmath/logb.c | 50 ---- mingw-w64-crt/math/softmath/logbf.c | 50 ---- mingw-w64-crt/math/softmath/logbl.c | 54 ----- mingw-w64-crt/math/softmath/logl.c | 72 ------ mingw-w64-crt/math/softmath/pow.c | 50 ---- mingw-w64-crt/math/softmath/powl.c | 54 ----- mingw-w64-crt/math/softmath/remainder.c | 50 ---- mingw-w64-crt/math/softmath/remainderf.c | 50 ---- mingw-w64-crt/math/softmath/remainderl.c | 54 ----- mingw-w64-crt/math/softmath/remquo.c | 62 ----- mingw-w64-crt/math/softmath/remquof.c | 62 ----- mingw-w64-crt/math/softmath/remquol.c | 62 ----- mingw-w64-crt/math/softmath/scalbn.c | 50 ---- mingw-w64-crt/math/softmath/scalbnf.c | 50 ---- mingw-w64-crt/math/softmath/scalbnl.c | 54 ----- mingw-w64-crt/math/softmath/sin.c | 83 ------- mingw-w64-crt/math/softmath/sinf.c | 83 ------- mingw-w64-crt/math/softmath/sinl.c | 68 ------ .../math/softmath/softmath_private.h | 100 -------- mingw-w64-crt/math/softmath/tanf.c | 50 ---- mingw-w64-crt/math/softmath/tanl.c | 54 ----- 76 files changed, 5 insertions(+), 4790 deletions(-) delete mode 100644 mingw-w64-crt/math/softmath/acosf.c delete mode 100644 mingw-w64-crt/math/softmath/acosh.c delete mode 100644 mingw-w64-crt/math/softmath/acoshf.c delete mode 100644 mingw-w64-crt/math/softmath/acoshl.c delete mode 100644 mingw-w64-crt/math/softmath/acosl.c delete mode 100644 mingw-w64-crt/math/softmath/asinf.c delete mode 100644 mingw-w64-crt/math/softmath/asinh.c delete mode 100644 mingw-w64-crt/math/softmath/asinhf.c delete mode 100644 mingw-w64-crt/math/softmath/asinhl.c delete mode 100644 mingw-w64-crt/math/softmath/asinl.c delete mode 100644 mingw-w64-crt/math/softmath/atan2f.c delete mode 100644 mingw-w64-crt/math/softmath/atan2l.c delete mode 100644 mingw-w64-crt/math/softmath/atanf.c delete mode 100644 mingw-w64-crt/math/softmath/atanh.c delete mode 100644 mingw-w64-crt/math/softmath/atanhf.c delete mode 100644 mingw-w64-crt/math/softmath/atanhl.c delete mode 100644 mingw-w64-crt/math/softmath/atanl.c delete mode 100644 mingw-w64-crt/math/softmath/bsd_private.h delete mode 100644 mingw-w64-crt/math/softmath/bsd_privatef.h delete mode 100644 mingw-w64-crt/math/softmath/cos.c delete mode 100644 mingw-w64-crt/math/softmath/cosf.c delete mode 100644 mingw-w64-crt/math/softmath/cosl.c delete mode 100644 mingw-w64-crt/math/softmath/e_fmod.c delete mode 100644 mingw-w64-crt/math/softmath/e_fmodf.c delete mode 100644 mingw-w64-crt/math/softmath/e_pow.c delete mode 100644 mingw-w64-crt/math/softmath/e_powf.c delete mode 100644 mingw-w64-crt/math/softmath/e_remainder.c delete mode 100644 mingw-w64-crt/math/softmath/e_remainderf.c delete mode 100644 mingw-w64-crt/math/softmath/exp.c delete mode 100644 mingw-w64-crt/math/softmath/exp2.c delete mode 100644 mingw-w64-crt/math/softmath/exp2f.c delete mode 100644 mingw-w64-crt/math/softmath/exp2l.c delete mode 100644 mingw-w64-crt/math/softmath/expl.c delete mode 100644 mingw-w64-crt/math/softmath/expm1.c delete mode 100644 mingw-w64-crt/math/softmath/expm1f.c delete mode 100644 mingw-w64-crt/math/softmath/expm1l.c delete mode 100644 mingw-w64-crt/math/softmath/fmod.c delete mode 100644 mingw-w64-crt/math/softmath/fmodf.c delete mode 100644 mingw-w64-crt/math/softmath/fmodl.c delete mode 100644 mingw-w64-crt/math/softmath/frexpl.c delete mode 100644 mingw-w64-crt/math/softmath/ilogb.c delete mode 100644 mingw-w64-crt/math/softmath/ilogbf.c delete mode 100644 mingw-w64-crt/math/softmath/ilogbl.c delete mode 100644 mingw-w64-crt/math/softmath/ldexp.c delete mode 100644 mingw-w64-crt/math/softmath/ldexpl.c delete mode 100644 mingw-w64-crt/math/softmath/log.c delete mode 100644 mingw-w64-crt/math/softmath/log10l.c delete mode 100644 mingw-w64-crt/math/softmath/log1p.c delete mode 100644 mingw-w64-crt/math/softmath/log1pf.c delete mode 100644 mingw-w64-crt/math/softmath/log1pl.c delete mode 100644 mingw-w64-crt/math/softmath/log2.c delete mode 100644 mingw-w64-crt/math/softmath/log2f.c delete mode 100644 mingw-w64-crt/math/softmath/log2l.c delete mode 100644 mingw-w64-crt/math/softmath/logb.c delete mode 100644 mingw-w64-crt/math/softmath/logbf.c delete mode 100644 mingw-w64-crt/math/softmath/logbl.c delete mode 100644 mingw-w64-crt/math/softmath/logl.c delete mode 100644 mingw-w64-crt/math/softmath/pow.c delete mode 100644 mingw-w64-crt/math/softmath/powl.c delete mode 100644 mingw-w64-crt/math/softmath/remainder.c delete mode 100644 mingw-w64-crt/math/softmath/remainderf.c delete mode 100644 mingw-w64-crt/math/softmath/remainderl.c delete mode 100644 mingw-w64-crt/math/softmath/remquo.c delete mode 100644 mingw-w64-crt/math/softmath/remquof.c delete mode 100644 mingw-w64-crt/math/softmath/remquol.c delete mode 100644 mingw-w64-crt/math/softmath/scalbn.c delete mode 100644 mingw-w64-crt/math/softmath/scalbnf.c delete mode 100644 mingw-w64-crt/math/softmath/scalbnl.c delete mode 100644 mingw-w64-crt/math/softmath/sin.c delete mode 100644 mingw-w64-crt/math/softmath/sinf.c delete mode 100644 mingw-w64-crt/math/softmath/sinl.c delete mode 100644 mingw-w64-crt/math/softmath/softmath_private.h delete mode 100644 mingw-w64-crt/math/softmath/tanf.c delete mode 100644 mingw-w64-crt/math/softmath/tanl.c diff --git a/mingw-w64-crt/Makefile.am b/mingw-w64-crt/Makefile.am index f7ada9062..63e98aa48 100644 --- a/mingw-w64-crt/Makefile.am +++ b/mingw-w64-crt/Makefile.am @@ -691,7 +691,6 @@ src_msvcrtarm32=\ stdio/scanf.S \ string/msvcr80plus_wcstok.c -if !ENABLE_SOFTMATH src_msvcrtarm32+=\ math/arm/nearbyint.S \ math/arm/nearbyintf.S \ @@ -734,7 +733,6 @@ src_msvcrtarm32+=\ math/arm-common/s_remquo.c \ math/arm-common/s_remquof.c \ math/arm-common/scalbn.c -endif # Files included in libmsvcrt-os.a (for msvcrt.dll) on arm64 src_msvcrtarm64=\ @@ -1219,32 +1217,10 @@ src_libmingwex64=$(src_libmingwex_x86) \ src_libmingwexarm32=\ math/sincos.c \ math/sincosf.c \ + math/arm-common/ldexpl.c \ math/arm-common/sincosl.c \ math/arm/s_rint.c math/arm/s_rintf.c -if ENABLE_SOFTMATH -src_libmingwexarm32+=\ - math/softmath/e_fmod.c math/softmath/e_fmodf.c math/softmath/e_powf.c math/softmath/e_pow.c \ - math/softmath/acosf.c math/softmath/acosh.c math/softmath/acosl.c math/softmath/acoshf.c math/softmath/acoshl.c \ - math/softmath/asinf.c math/softmath/asinh.c math/softmath/asinl.c math/softmath/asinhf.c math/softmath/asinhl.c \ - math/softmath/atan2f.c math/softmath/atan2l.c math/softmath/atanf.c math/softmath/atanh.c math/softmath/atanl.c \ - math/softmath/atanhf.c math/softmath/atanhl.c math/softmath/cos.c math/softmath/cosf.c math/softmath/cosl.c \ - math/softmath/exp.c math/softmath/expl.c math/softmath/exp2.c math/softmath/exp2f.c math/softmath/exp2l.c \ - math/softmath/expm1.c math/softmath/expm1f.c math/softmath/expm1l.c math/softmath/fmod.c math/softmath/fmodf.c \ - math/softmath/fmodl.c math/softmath/frexpl.c math/softmath/ilogb.c math/softmath/ilogbf.c math/softmath/ilogbl.c \ - math/softmath/ldexp.c math/softmath/ldexpl.c math/softmath/log.c math/softmath/log10l.c math/softmath/log1p.c \ - math/softmath/log1pf.c math/softmath/log1pl.c math/softmath/log2.c math/softmath/log2f.c math/softmath/log2l.c \ - math/softmath/logb.c math/softmath/logbf.c math/softmath/logbl.c math/softmath/logl.c math/softmath/pow.c \ - math/softmath/powl.c \ - math/softmath/remainder.c math/softmath/remainderf.c math/softmath/remainderl.c \ - math/softmath/remquo.c math/softmath/remquof.c math/softmath/remquol.c math/softmath/scalbn.c math/softmath/scalbnf.c \ - math/softmath/scalbnl.c math/softmath/sin.c \ - math/softmath/sinf.c math/softmath/sinl.c math/softmath/tanf.c math/softmath/tanl.c -else -src_libmingwexarm32+=\ - math/arm-common/ldexpl.c -endif - # these only go into the ARM64 version: src_libmingwexarm64=\ math/sincos.c \ diff --git a/mingw-w64-crt/configure.ac b/mingw-w64-crt/configure.ac index 106f0fc06..f830aeefc 100644 --- a/mingw-w64-crt/configure.ac +++ b/mingw-w64-crt/configure.ac @@ -282,14 +282,13 @@ AC_SUBST([CFGUARD_CFLAGS]) AC_MSG_CHECKING([whether to enable experimental features]) AC_ARG_ENABLE([experimental], [AS_HELP_STRING([--enable-experimental], - [Enable experimental features, valid options are comma separated combination of all, dfp, printf128, registeredprintf, softmath.])], + [Enable experimental features, valid options are comma separated combination of all, dfp, printf128, registeredprintf.])], [experimental_features=$enable_experimental], [experimental_features="no"]) enable_dfp=no enable_printf128=no enable_registeredprintf=no -enable_softmath=no experiment_list=$($AWK 'BEGIN{OFS=" "; len = split(ARGV@<:@1@:>@,str,","); for(; len != 0; len--) print str@<:@len@:>@ }' "$experimental_features") for arg in $experiment_list @@ -298,10 +297,9 @@ AS_CASE([$arg], [dfp],[enable_dfp=yes], [printf128],[enable_printf128=yes], [registeredprintf],[enable_registeredprintf=yes], - [softmath],[enable_softmath=yes], - [all], [enable_dfp=yes; enable_printf128=yes; enable_registeredprintf=yes; enable_softmath=yes; ], - [yes], [enable_dfp=yes; enable_printf128=yes; enable_registeredprintf=yes; enable_softmath=yes; ], - [no], [enable_dfp=no; enable_printf128=no; enable_registeredprintf=no; enable_softmath=no; ], + [all], [enable_dfp=yes; enable_printf128=yes; enable_registeredprintf=yes; ], + [yes], [enable_dfp=yes; enable_printf128=yes; enable_registeredprintf=yes; ], + [no], [enable_dfp=no; enable_printf128=no; enable_registeredprintf=no; ], [AC_MSG_ERROR([Unknown option "$arg"])] ) done @@ -310,11 +308,9 @@ AC_MSG_RESULT([$experimental_features]) AM_CONDITIONAL([ENABLE_DFP],[ test "$enable_dfp" = "yes" ]) AM_CONDITIONAL([ENABLE_PRINTF128],[ test "$enable_printf128" = "yes" ]) AM_CONDITIONAL([ENABLE_REGISTEREDPRINTF],[ test "$enable_registeredprintf" = "yes" ]) -AM_CONDITIONAL([ENABLE_SOFTMATH],[ test "$enable_softmath" = "yes" ]) AM_COND_IF([ENABLE_DFP],[AC_DEFINE([__ENABLE_DFP],[1],[Build DFP support])]) AM_COND_IF([ENABLE_PRINTF128],[AC_DEFINE([__ENABLE_PRINTF128],[1],[Build DFP support])]) AM_COND_IF([ENABLE_REGISTEREDPRINTF],[AC_DEFINE([__ENABLE_REGISTEREDPRINTF],[1],[Build DFP support])]) -AM_COND_IF([ENABLE_SOFTMATH],[AC_DEFINE([__ENABLE_SOFTMATH],[1],[Build softmath routines])]) AC_MSG_CHECKING([whether the compiler supports -municode]) AC_ARG_ENABLE([tests-unicode], @@ -473,7 +469,6 @@ AC_MSG_NOTICE([]) AC_MSG_NOTICE([ DFP printf...........: $enable_dfp]) AC_MSG_NOTICE([ 128-bit printf.......: $enable_printf128]) AC_MSG_NOTICE([ Custom printf........: $enable_registeredprintf]) -AC_MSG_NOTICE([ Softhmath............: $enable_softmath]) AC_MSG_NOTICE([]) diff --git a/mingw-w64-crt/math/softmath/acosf.c b/mingw-w64-crt/math/softmath/acosf.c deleted file mode 100644 index fb07b0cb1..000000000 diff --git a/mingw-w64-crt/math/softmath/acosh.c b/mingw-w64-crt/math/softmath/acosh.c deleted file mode 100644 index 01d3e20fd..000000000 diff --git a/mingw-w64-crt/math/softmath/acoshf.c b/mingw-w64-crt/math/softmath/acoshf.c deleted file mode 100644 index cc18e6bb7..000000000 diff --git a/mingw-w64-crt/math/softmath/acoshl.c b/mingw-w64-crt/math/softmath/acoshl.c deleted file mode 100644 index f0c6288db..000000000 diff --git a/mingw-w64-crt/math/softmath/acosl.c b/mingw-w64-crt/math/softmath/acosl.c deleted file mode 100644 index 9b90f016a..000000000 diff --git a/mingw-w64-crt/math/softmath/asinf.c b/mingw-w64-crt/math/softmath/asinf.c deleted file mode 100644 index 5a73f33dd..000000000 diff --git a/mingw-w64-crt/math/softmath/asinh.c b/mingw-w64-crt/math/softmath/asinh.c deleted file mode 100644 index 10601c5d1..000000000 diff --git a/mingw-w64-crt/math/softmath/asinhf.c b/mingw-w64-crt/math/softmath/asinhf.c deleted file mode 100644 index c8de5314a..000000000 diff --git a/mingw-w64-crt/math/softmath/asinhl.c b/mingw-w64-crt/math/softmath/asinhl.c deleted file mode 100644 index b4f83fded..000000000 diff --git a/mingw-w64-crt/math/softmath/asinl.c b/mingw-w64-crt/math/softmath/asinl.c deleted file mode 100644 index 68b33017c..000000000 diff --git a/mingw-w64-crt/math/softmath/atan2f.c b/mingw-w64-crt/math/softmath/atan2f.c deleted file mode 100644 index cc86c5ed4..000000000 diff --git a/mingw-w64-crt/math/softmath/atan2l.c b/mingw-w64-crt/math/softmath/atan2l.c deleted file mode 100644 index a3b3ce450..000000000 diff --git a/mingw-w64-crt/math/softmath/atanf.c b/mingw-w64-crt/math/softmath/atanf.c deleted file mode 100644 index ad5465af0..000000000 diff --git a/mingw-w64-crt/math/softmath/atanh.c b/mingw-w64-crt/math/softmath/atanh.c deleted file mode 100644 index d05f0b8a2..000000000 diff --git a/mingw-w64-crt/math/softmath/atanhf.c b/mingw-w64-crt/math/softmath/atanhf.c deleted file mode 100644 index 6826e294a..000000000 diff --git a/mingw-w64-crt/math/softmath/atanhl.c b/mingw-w64-crt/math/softmath/atanhl.c deleted file mode 100644 index dd56d03c9..000000000 diff --git a/mingw-w64-crt/math/softmath/atanl.c b/mingw-w64-crt/math/softmath/atanl.c deleted file mode 100644 index fc7156909..000000000 diff --git a/mingw-w64-crt/math/softmath/bsd_private.h b/mingw-w64-crt/math/softmath/bsd_private.h deleted file mode 100644 index caccdc7ad..000000000 diff --git a/mingw-w64-crt/math/softmath/bsd_privatef.h b/mingw-w64-crt/math/softmath/bsd_privatef.h deleted file mode 100644 index 466dcf973..000000000 diff --git a/mingw-w64-crt/math/softmath/cos.c b/mingw-w64-crt/math/softmath/cos.c deleted file mode 100644 index 371efd460..000000000 diff --git a/mingw-w64-crt/math/softmath/cosf.c b/mingw-w64-crt/math/softmath/cosf.c deleted file mode 100644 index 1400c1311..000000000 diff --git a/mingw-w64-crt/math/softmath/cosl.c b/mingw-w64-crt/math/softmath/cosl.c deleted file mode 100644 index 478f6ccb0..000000000 diff --git a/mingw-w64-crt/math/softmath/e_fmod.c b/mingw-w64-crt/math/softmath/e_fmod.c deleted file mode 100644 index da0db6ffc..000000000 diff --git a/mingw-w64-crt/math/softmath/e_fmodf.c b/mingw-w64-crt/math/softmath/e_fmodf.c deleted file mode 100644 index a08fb0419..000000000 diff --git a/mingw-w64-crt/math/softmath/e_pow.c b/mingw-w64-crt/math/softmath/e_pow.c deleted file mode 100644 index da697db57..000000000 diff --git a/mingw-w64-crt/math/softmath/e_powf.c b/mingw-w64-crt/math/softmath/e_powf.c deleted file mode 100644 index 1ab8d6f8c..000000000 diff --git a/mingw-w64-crt/math/softmath/e_remainder.c b/mingw-w64-crt/math/softmath/e_remainder.c deleted file mode 100644 index 6e90af66c..000000000 diff --git a/mingw-w64-crt/math/softmath/e_remainderf.c b/mingw-w64-crt/math/softmath/e_remainderf.c deleted file mode 100644 index a4feb36c9..000000000 diff --git a/mingw-w64-crt/math/softmath/exp.c b/mingw-w64-crt/math/softmath/exp.c deleted file mode 100644 index f8c067d9d..000000000 diff --git a/mingw-w64-crt/math/softmath/exp2.c b/mingw-w64-crt/math/softmath/exp2.c deleted file mode 100644 index 61e5955ad..000000000 diff --git a/mingw-w64-crt/math/softmath/exp2f.c b/mingw-w64-crt/math/softmath/exp2f.c deleted file mode 100644 index 6dee1bbaf..000000000 diff --git a/mingw-w64-crt/math/softmath/exp2l.c b/mingw-w64-crt/math/softmath/exp2l.c deleted file mode 100644 index 63a942bf4..000000000 diff --git a/mingw-w64-crt/math/softmath/expl.c b/mingw-w64-crt/math/softmath/expl.c deleted file mode 100644 index 675a8cb62..000000000 diff --git a/mingw-w64-crt/math/softmath/expm1.c b/mingw-w64-crt/math/softmath/expm1.c deleted file mode 100644 index bd016836d..000000000 diff --git a/mingw-w64-crt/math/softmath/expm1f.c b/mingw-w64-crt/math/softmath/expm1f.c deleted file mode 100644 index 00ec59d9e..000000000 diff --git a/mingw-w64-crt/math/softmath/expm1l.c b/mingw-w64-crt/math/softmath/expm1l.c deleted file mode 100644 index ca7bfd367..000000000 diff --git a/mingw-w64-crt/math/softmath/fmod.c b/mingw-w64-crt/math/softmath/fmod.c deleted file mode 100644 index 3020496b5..000000000 diff --git a/mingw-w64-crt/math/softmath/fmodf.c b/mingw-w64-crt/math/softmath/fmodf.c deleted file mode 100644 index 2a39baea8..000000000 diff --git a/mingw-w64-crt/math/softmath/fmodl.c b/mingw-w64-crt/math/softmath/fmodl.c deleted file mode 100644 index 869fed1a3..000000000 diff --git a/mingw-w64-crt/math/softmath/frexpl.c b/mingw-w64-crt/math/softmath/frexpl.c deleted file mode 100644 index efe68aa89..000000000 diff --git a/mingw-w64-crt/math/softmath/ilogb.c b/mingw-w64-crt/math/softmath/ilogb.c deleted file mode 100644 index 641561e78..000000000 diff --git a/mingw-w64-crt/math/softmath/ilogbf.c b/mingw-w64-crt/math/softmath/ilogbf.c deleted file mode 100644 index 98573e1d5..000000000 diff --git a/mingw-w64-crt/math/softmath/ilogbl.c b/mingw-w64-crt/math/softmath/ilogbl.c deleted file mode 100644 index 50fac87b4..000000000 diff --git a/mingw-w64-crt/math/softmath/ldexp.c b/mingw-w64-crt/math/softmath/ldexp.c deleted file mode 100644 index 7c60792ec..000000000 diff --git a/mingw-w64-crt/math/softmath/ldexpl.c b/mingw-w64-crt/math/softmath/ldexpl.c deleted file mode 100644 index 3109b6411..000000000 diff --git a/mingw-w64-crt/math/softmath/log.c b/mingw-w64-crt/math/softmath/log.c deleted file mode 100644 index 45275ca86..000000000 diff --git a/mingw-w64-crt/math/softmath/log10l.c b/mingw-w64-crt/math/softmath/log10l.c deleted file mode 100644 index cd4e0bd71..000000000 diff --git a/mingw-w64-crt/math/softmath/log1p.c b/mingw-w64-crt/math/softmath/log1p.c deleted file mode 100644 index fa2169c3b..000000000 diff --git a/mingw-w64-crt/math/softmath/log1pf.c b/mingw-w64-crt/math/softmath/log1pf.c deleted file mode 100644 index b3d705236..000000000 diff --git a/mingw-w64-crt/math/softmath/log1pl.c b/mingw-w64-crt/math/softmath/log1pl.c deleted file mode 100644 index fe37abc0b..000000000 diff --git a/mingw-w64-crt/math/softmath/log2.c b/mingw-w64-crt/math/softmath/log2.c deleted file mode 100644 index c35a7a38d..000000000 diff --git a/mingw-w64-crt/math/softmath/log2f.c b/mingw-w64-crt/math/softmath/log2f.c deleted file mode 100644 index 73d965932..000000000 diff --git a/mingw-w64-crt/math/softmath/log2l.c b/mingw-w64-crt/math/softmath/log2l.c deleted file mode 100644 index 9c34ef75f..000000000 diff --git a/mingw-w64-crt/math/softmath/logb.c b/mingw-w64-crt/math/softmath/logb.c deleted file mode 100644 index 068194ac2..000000000 diff --git a/mingw-w64-crt/math/softmath/logbf.c b/mingw-w64-crt/math/softmath/logbf.c deleted file mode 100644 index 1e4e74fbe..000000000 diff --git a/mingw-w64-crt/math/softmath/logbl.c b/mingw-w64-crt/math/softmath/logbl.c deleted file mode 100644 index 9951e72af..000000000 diff --git a/mingw-w64-crt/math/softmath/logl.c b/mingw-w64-crt/math/softmath/logl.c deleted file mode 100644 index f7cd49767..000000000 diff --git a/mingw-w64-crt/math/softmath/pow.c b/mingw-w64-crt/math/softmath/pow.c deleted file mode 100644 index 08f3ef081..000000000 diff --git a/mingw-w64-crt/math/softmath/powl.c b/mingw-w64-crt/math/softmath/powl.c deleted file mode 100644 index 3ae4cf735..000000000 diff --git a/mingw-w64-crt/math/softmath/remainder.c b/mingw-w64-crt/math/softmath/remainder.c deleted file mode 100644 index c655b27cf..000000000 diff --git a/mingw-w64-crt/math/softmath/remainderf.c b/mingw-w64-crt/math/softmath/remainderf.c deleted file mode 100644 index 1198fa8f7..000000000 diff --git a/mingw-w64-crt/math/softmath/remainderl.c b/mingw-w64-crt/math/softmath/remainderl.c deleted file mode 100644 index b298c8ec6..000000000 diff --git a/mingw-w64-crt/math/softmath/remquo.c b/mingw-w64-crt/math/softmath/remquo.c deleted file mode 100644 index 5cb62ad50..000000000 diff --git a/mingw-w64-crt/math/softmath/remquof.c b/mingw-w64-crt/math/softmath/remquof.c deleted file mode 100644 index dbdd2432b..000000000 diff --git a/mingw-w64-crt/math/softmath/remquol.c b/mingw-w64-crt/math/softmath/remquol.c deleted file mode 100644 index 4863b2fc4..000000000 diff --git a/mingw-w64-crt/math/softmath/scalbn.c b/mingw-w64-crt/math/softmath/scalbn.c deleted file mode 100644 index c9c7f2ed6..000000000 diff --git a/mingw-w64-crt/math/softmath/scalbnf.c b/mingw-w64-crt/math/softmath/scalbnf.c deleted file mode 100644 index 069224db1..000000000 diff --git a/mingw-w64-crt/math/softmath/scalbnl.c b/mingw-w64-crt/math/softmath/scalbnl.c deleted file mode 100644 index fb57e3fad..000000000 diff --git a/mingw-w64-crt/math/softmath/sin.c b/mingw-w64-crt/math/softmath/sin.c deleted file mode 100644 index 6e2689392..000000000 diff --git a/mingw-w64-crt/math/softmath/sinf.c b/mingw-w64-crt/math/softmath/sinf.c deleted file mode 100644 index 46f503a47..000000000 diff --git a/mingw-w64-crt/math/softmath/sinl.c b/mingw-w64-crt/math/softmath/sinl.c deleted file mode 100644 index 34e6417f8..000000000 diff --git a/mingw-w64-crt/math/softmath/softmath_private.h b/mingw-w64-crt/math/softmath/softmath_private.h deleted file mode 100644 index 401f7c661..000000000 diff --git a/mingw-w64-crt/math/softmath/tanf.c b/mingw-w64-crt/math/softmath/tanf.c deleted file mode 100644 index 5d6034feb..000000000 diff --git a/mingw-w64-crt/math/softmath/tanl.c b/mingw-w64-crt/math/softmath/tanl.c deleted file mode 100644 index dd2737c11..000000000 -- 2.43.0 _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
