Index: newlib/libc/include/math.h =================================================================== --- newlib/libc/include/math.h (revision 439406) +++ newlib/libc/include/math.h (working copy) @@ -420,20 +420,24 @@ extern long double fmodl _PARAMS((long double, long double)); extern long double hypotl _PARAMS((long double, long double)); #endif /* ! defined (__math_68881) */ #endif /* ! defined (_REENT_ONLY) */ extern long double copysignl _PARAMS((long double, long double)); extern long double nanl _PARAMS((const char *)); extern int ilogbl _PARAMS((long double)); extern long double asinhl _PARAMS((long double)); extern long double cbrtl _PARAMS((long double)); extern long double nextafterl _PARAMS((long double, long double)); +extern float nexttowardf _PARAMS((float, long double)); +extern double nexttoward _PARAMS((double, long double)); +extern long double nexttowardl _PARAMS((long double, long double)); +extern long double logbl _PARAMS((long double)); extern long double rintl _PARAMS((long double)); extern long double scalbnl _PARAMS((long double, int)); extern long double exp2l _PARAMS((long double)); extern long double scalblnl _PARAMS((long double, long)); extern long double tgammal _PARAMS((long double)); extern long double nearbyintl _PARAMS((long double)); extern long int lrintl _PARAMS((long double)); extern long long int llrintl _PARAMS((long double)); extern long double roundl _PARAMS((long double)); extern long lroundl _PARAMS((long double)); Index: newlib/libm/common/nexttowardl.c =================================================================== --- newlib/libm/common/nexttowardl.c (revision 0) +++ newlib/libm/common/nexttowardl.c (revision 0) @@ -0,0 +1,11 @@ +#include +#include "local.h" + +#ifdef _LDBL_EQ_DBL +long double +nexttowardl (long double x, long double y) +{ + return nextafter((double)x, (double)y); +} +#endif + Index: newlib/libm/common/nexttoward.c =================================================================== --- newlib/libm/common/nexttoward.c (revision 0) +++ newlib/libm/common/nexttoward.c (revision 0) @@ -0,0 +1,11 @@ +#include +#include "local.h" + +#ifdef _LDBL_EQ_DBL +double +nexttoward (double x, long double y) +{ + return nextafter(x, (double)y); +} +#endif + Index: newlib/libm/common/logbl.c =================================================================== --- newlib/libm/common/logbl.c (revision 0) +++ newlib/libm/common/logbl.c (revision 0) @@ -0,0 +1,11 @@ +#include +#include "local.h" + +#ifdef _LDBL_EQ_DBL +long double +logbl (long double x) +{ + return logb((double)x); +} +#endif + Index: newlib/libm/common/nexttowardf.c =================================================================== --- newlib/libm/common/nexttowardf.c (revision 0) +++ newlib/libm/common/nexttowardf.c (revision 0) @@ -0,0 +1,11 @@ +#include +#include "local.h" + +#ifdef _LDBL_EQ_DBL +float +nexttowardf (float x, long double y) +{ + return nextafterf(x, (double)y); +} +#endif + Index: newlib/libm/common/Makefile.in =================================================================== --- newlib/libm/common/Makefile.in (revision 439406) +++ newlib/libm/common/Makefile.in (working copy) @@ -129,21 +129,23 @@ lib_a-scalbnl.$(OBJEXT) lib_a-exp2l.$(OBJEXT) \ lib_a-scalblnl.$(OBJEXT) lib_a-tgammal.$(OBJEXT) \ lib_a-nearbyintl.$(OBJEXT) lib_a-lrintl.$(OBJEXT) \ lib_a-llrintl.$(OBJEXT) lib_a-roundl.$(OBJEXT) \ lib_a-lroundl.$(OBJEXT) lib_a-llroundl.$(OBJEXT) \ lib_a-truncl.$(OBJEXT) lib_a-remquol.$(OBJEXT) \ lib_a-fdiml.$(OBJEXT) lib_a-fmaxl.$(OBJEXT) \ lib_a-fminl.$(OBJEXT) lib_a-fmal.$(OBJEXT) \ lib_a-acoshl.$(OBJEXT) lib_a-atanhl.$(OBJEXT) \ lib_a-remainderl.$(OBJEXT) lib_a-lgammal.$(OBJEXT) \ - lib_a-erfl.$(OBJEXT) lib_a-erfcl.$(OBJEXT) + lib_a-erfl.$(OBJEXT) lib_a-erfcl.$(OBJEXT) \ + lib_a-logbl.$(OBJEXT) lib_a-nexttoward.$(OBJEXT) \ + lib_a-nexttowardl.$(OBJEXT) lib_a-nexttowardf.$(OBJEXT) @HAVE_LONG_DOUBLE_TRUE@@USE_LIBTOOL_FALSE@am__objects_4 = \ @HAVE_LONG_DOUBLE_TRUE@@USE_LIBTOOL_FALSE@ $(am__objects_3) @USE_LIBTOOL_FALSE@am_lib_a_OBJECTS = $(am__objects_1) \ @USE_LIBTOOL_FALSE@ $(am__objects_2) $(am__objects_4) lib_a_OBJECTS = $(am_lib_a_OBJECTS) LTLIBRARIES = $(noinst_LTLIBRARIES) libcommon_la_LIBADD = am__objects_5 = s_finite.lo s_copysign.lo s_modf.lo s_scalbn.lo \ s_cbrt.lo s_exp10.lo s_expm1.lo s_ilogb.lo s_infconst.lo \ s_infinity.lo s_isinf.lo s_isinfd.lo s_isnan.lo s_isnand.lo \ @@ -162,21 +164,21 @@ sf_scalbln.lo sf_trunc.lo am__objects_7 = atanl.lo cosl.lo sinl.lo tanl.lo tanhl.lo frexpl.lo \ modfl.lo ceill.lo fabsl.lo floorl.lo log1pl.lo expm1l.lo \ acosl.lo asinl.lo atan2l.lo coshl.lo sinhl.lo expl.lo \ ldexpl.lo logl.lo log10l.lo powl.lo sqrtl.lo fmodl.lo \ hypotl.lo copysignl.lo nanl.lo ilogbl.lo asinhl.lo cbrtl.lo \ nextafterl.lo rintl.lo scalbnl.lo exp2l.lo scalblnl.lo \ tgammal.lo nearbyintl.lo lrintl.lo llrintl.lo roundl.lo \ lroundl.lo llroundl.lo truncl.lo remquol.lo fdiml.lo fmaxl.lo \ fminl.lo fmal.lo acoshl.lo atanhl.lo remainderl.lo lgammal.lo \ - erfl.lo erfcl.lo + erfl.lo erfcl.lo logbl.lo nexttowardf.lo nexttoward.lo nexttowardl.lo @HAVE_LONG_DOUBLE_TRUE@@USE_LIBTOOL_TRUE@am__objects_8 = \ @HAVE_LONG_DOUBLE_TRUE@@USE_LIBTOOL_TRUE@ $(am__objects_7) @USE_LIBTOOL_TRUE@am_libcommon_la_OBJECTS = $(am__objects_5) \ @USE_LIBTOOL_TRUE@ $(am__objects_6) $(am__objects_8) libcommon_la_OBJECTS = $(am_libcommon_la_OBJECTS) libcommon_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libcommon_la_LDFLAGS) $(LDFLAGS) -o $@ @USE_LIBTOOL_TRUE@am_libcommon_la_rpath = DEFAULT_INCLUDES = -I.@am__isrc@ @@ -348,21 +350,22 @@ sf_lrint.c sf_llrint.c \ sf_lround.c sf_llround.c sf_nearbyint.c sf_remquo.c sf_round.c \ sf_scalbln.c sf_trunc.c lsrc = atanl.c cosl.c sinl.c tanl.c tanhl.c frexpl.c modfl.c ceill.c fabsl.c \ floorl.c log1pl.c expm1l.c acosl.c asinl.c atan2l.c coshl.c sinhl.c \ expl.c ldexpl.c logl.c log10l.c powl.c sqrtl.c fmodl.c hypotl.c \ copysignl.c nanl.c ilogbl.c asinhl.c cbrtl.c nextafterl.c rintl.c \ scalbnl.c exp2l.c scalblnl.c tgammal.c nearbyintl.c lrintl.c llrintl.c \ roundl.c lroundl.c llroundl.c truncl.c remquol.c fdiml.c fmaxl.c fminl.c \ - fmal.c acoshl.c atanhl.c remainderl.c lgammal.c erfl.c erfcl.c + fmal.c acoshl.c atanhl.c remainderl.c lgammal.c erfl.c erfcl.c \ + logbl.c nexttowardf.c nexttoward.c nexttowardl.c libcommon_la_LDFLAGS = -Xcompiler -nostdlib @USE_LIBTOOL_TRUE@noinst_LTLIBRARIES = libcommon.la @USE_LIBTOOL_TRUE@libcommon_la_SOURCES = $(src) $(fsrc) \ @USE_LIBTOOL_TRUE@ $(am__append_1) @USE_LIBTOOL_FALSE@noinst_DATA = @USE_LIBTOOL_TRUE@noinst_DATA = objectlist.awk.in @USE_LIBTOOL_FALSE@noinst_LIBRARIES = lib.a @USE_LIBTOOL_FALSE@lib_a_SOURCES = $(src) $(fsrc) $(am__append_2) @USE_LIBTOOL_FALSE@lib_a_CFLAGS = $(AM_CFLAGS) @@ -1058,20 +1061,44 @@ lib_a-cbrtl.obj: cbrtl.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-cbrtl.obj `if test -f 'cbrtl.c'; then $(CYGPATH_W) 'cbrtl.c'; else $(CYGPATH_W) '$(srcdir)/cbrtl.c'; fi` lib_a-nextafterl.o: nextafterl.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nextafterl.o `test -f 'nextafterl.c' || echo '$(srcdir)/'`nextafterl.c lib_a-nextafterl.obj: nextafterl.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nextafterl.obj `if test -f 'nextafterl.c'; then $(CYGPATH_W) 'nextafterl.c'; else $(CYGPATH_W) '$(srcdir)/nextafterl.c'; fi` +lib_a-logbl.o: logbl.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-logbl.o `test -f 'logbl.c' || echo '$(srcdir)/'`logbl.c + +lib_a-logbl.obj: logbl.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-logbl.obj `if test -f 'logbl.c'; then $(CYGPATH_W) 'logbl.c'; else $(CYGPATH_W) '$(srcdir)/logbll.c'; fi` + +lib_a-nexttowardf.o: nexttowardf.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nexttowardf.o `test -f 'nexttowardf.c' || echo '$(srcdir)/'`nexttowardf.c + +lib_a-nexttowardf.obj: nexttowardf.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nexttowardf.obj `if test -f 'nexttowardf.c'; then $(CYGPATH_W) 'nexttowardf.c'; else $(CYGPATH_W) '$(srcdir)/nexttowardfl.c'; fi` + +lib_a-nexttoward.o: nexttoward.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nexttoward.o `test -f 'nexttoward.c' || echo '$(srcdir)/'`nexttoward.c + +lib_a-nexttoward.obj: nexttoward.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nexttoward.obj `if test -f 'nexttoward.c'; then $(CYGPATH_W) 'nexttoward.c'; else $(CYGPATH_W) '$(srcdir)/nexttowardl.c'; fi` + +lib_a-nexttowardl.o: nexttowardl.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nexttowardl.o `test -f 'nexttowardl.c' || echo '$(srcdir)/'`nexttowardl.c + +lib_a-nexttowardl.obj: nexttowardl.c + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-nexttowardl.obj `if test -f 'nexttowardl.c'; then $(CYGPATH_W) 'nexttowardl.c'; else $(CYGPATH_W) '$(srcdir)/nexttowardll.c'; fi` + lib_a-rintl.o: rintl.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-rintl.o `test -f 'rintl.c' || echo '$(srcdir)/'`rintl.c lib_a-rintl.obj: rintl.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-rintl.obj `if test -f 'rintl.c'; then $(CYGPATH_W) 'rintl.c'; else $(CYGPATH_W) '$(srcdir)/rintl.c'; fi` lib_a-scalbnl.o: scalbnl.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-scalbnl.o `test -f 'scalbnl.c' || echo '$(srcdir)/'`scalbnl.c lib_a-scalbnl.obj: scalbnl.c