From 36775c3ba3cc21296f7248e761b8678ae0bf2fed Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 21 Jun 1997 21:43:00 +0000 Subject: Update. 1997-06-21 17:35 Ulrich Drepper * argp/argp.h: Remove extra #endif. Pretty print. * md5-crypt/md5.h: Likewise. * ctype/ctype.h: Don't use but . * wctype/wctype.h: Likewise. * sysdeps/unix/sysv/linux/Makefile: Build stdio_lim.h in correct directory. * sysdeps/libm-i387/s_ilogb.S: Add fwait to ensure we get the result. * sysdeps/libm-i387/s_ilogbf.S: Likewise. * sysdeps/libm-i387/s_ilogbl.S: Likewise. * sysdeps/libm-i387/s_lrint.S: Likewise. * sysdeps/libm-i387/s_llrint.S: Likewise. --- sysdeps/libm-i387/s_ilogb.S | 1 + sysdeps/libm-i387/s_ilogbf.S | 1 + sysdeps/libm-i387/s_ilogbl.S | 1 + sysdeps/libm-i387/s_llrint.S | 1 + sysdeps/libm-i387/s_lrint.S | 1 + sysdeps/libm-ieee754/k_standard.c | 10 ++-------- sysdeps/unix/sysv/linux/Makefile | 6 +++--- 7 files changed, 10 insertions(+), 11 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/libm-i387/s_ilogb.S b/sysdeps/libm-i387/s_ilogb.S index 6c12558..015fb6f 100644 --- a/sysdeps/libm-i387/s_ilogb.S +++ b/sysdeps/libm-i387/s_ilogb.S @@ -14,6 +14,7 @@ ENTRY(__ilogb) fstpl %st fistpl (%esp) + fwait popl %eax ret diff --git a/sysdeps/libm-i387/s_ilogbf.S b/sysdeps/libm-i387/s_ilogbf.S index b08a32f..fd055ab 100644 --- a/sysdeps/libm-i387/s_ilogbf.S +++ b/sysdeps/libm-i387/s_ilogbf.S @@ -14,6 +14,7 @@ ENTRY(__ilogbf) fstpl %st fistpl (%esp) + fwait popl %eax ret diff --git a/sysdeps/libm-i387/s_ilogbl.S b/sysdeps/libm-i387/s_ilogbl.S index adc88aa..1dad93a 100644 --- a/sysdeps/libm-i387/s_ilogbl.S +++ b/sysdeps/libm-i387/s_ilogbl.S @@ -15,6 +15,7 @@ ENTRY(__ilogbl) fstp %st fistpl (%esp) + fwait popl %eax ret diff --git a/sysdeps/libm-i387/s_llrint.S b/sysdeps/libm-i387/s_llrint.S index cfb8e86..49bfebc 100644 --- a/sysdeps/libm-i387/s_llrint.S +++ b/sysdeps/libm-i387/s_llrint.S @@ -26,6 +26,7 @@ ENTRY(__llrint) fldt 4(%esp) subl $8, %esp fistpll (%esp) + fwait popl %eax popl %edx ret diff --git a/sysdeps/libm-i387/s_lrint.S b/sysdeps/libm-i387/s_lrint.S index 1924145..3be4ca7 100644 --- a/sysdeps/libm-i387/s_lrint.S +++ b/sysdeps/libm-i387/s_lrint.S @@ -26,6 +26,7 @@ ENTRY(__lrint) fldt 4(%esp) subl $4, %esp fistpl (%esp) + fwait popl %eax ret END(__lrint) diff --git a/sysdeps/libm-ieee754/k_standard.c b/sysdeps/libm-ieee754/k_standard.c index d1f8274..391ab05 100644 --- a/sysdeps/libm-ieee754/k_standard.c +++ b/sysdeps/libm-ieee754/k_standard.c @@ -826,10 +826,7 @@ static double zero = 0.0; /* used as const */ exc.type = OVERFLOW; exc.name = type < 100 ? "gamma" : (type < 200 ? "gammaf" : "gammal"); - if (_LIB_VERSION == _SVID_) - exc.retval = HUGE; - else - exc.retval = HUGE_VAL; + exc.retval = HUGE_VAL; if (_LIB_VERSION == _POSIX_) __set_errno (ERANGE); else if (!matherr(&exc)) { @@ -843,10 +840,7 @@ static double zero = 0.0; /* used as const */ exc.type = SING; exc.name = type < 100 ? "gamma" : (type < 200 ? "gammaf" : "gammal"); - if (_LIB_VERSION == _SVID_) - exc.retval = HUGE; - else - exc.retval = NAN; + exc.retval = HUGE_VAL; if (_LIB_VERSION == _POSIX_) __set_errno (EDOM); else if (!matherr(&exc)) { diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 42f6463..4ab97b2 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -68,7 +68,7 @@ inhibit-glue = yes # Tell sysdeps/posix/Makefile that we create stdio_lim.h differently. inhibit-stdio_lim = yes -$(common-objpfx)stdio_%.h $(common-objpfx)stdio_%.d: \ +$(common-objpfx)bits/stdio_%.h $(common-objpfx)bits/stdio_%.d: \ $(..)sysdeps/unix/sysv/linux/stdio_%.h.in rm -f $(@:.h=.d) $(@:.d=.h)-t echo '#include ' | \ @@ -88,6 +88,6 @@ $(common-objpfx)stdio_%.h $(common-objpfx)stdio_%.d: \ rm -f $(@:.d=.h)-t ifndef no_deps # Get the list of dependencies (probably /usr/include/linux/limits.h). --include $(common-objpfx)stdio_lim.d +-include $(common-objpfx)bits/stdio_lim.d endif -common-generated += stdio_lim.h stdio_lim.d +common-generated += bits/stdio_lim.h bits/stdio_lim.d -- cgit v1.1