From dff14448f7521b27349af4e67d141aba1c9d7edd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 26 Jun 1998 14:47:05 +0000 Subject: Update. 1998-06-26 14:37 Ulrich Drepper * configure.in: Check for -fexceptions. * config.make.in: Define exceptions, not no-exceptions. * misc/sys/cdefs.h: Define __PMS. When using modern g++ define __P to use throw(). * misc/Makefile: Define CFLAGS-tsearch.c and CFLAGS-lsearch.c to $(exceptions). * stdlib/Makefile: Likewise for bsearch.c, msort.c, and qsort.c. * misc/search.h: Use __PMS in tsearch, tfind, tdelete, twalk, tdestroy, lfind, and lsearch prototpypes. * stdlib/stdlib.h: Likewise for bsearch and qsort. 1998-06-26 Ulrich Drepper * sysdeps/i386/fpu/bits/mathinline.h (__finite): Use C code, not asm. 1998-06-25 Andreas Schwab * Makefile (remove-old-headers): Make phony. * configure.in: Substitute @old_glibc_headers@. 1998-06-26 Ulrich Drepper * libc.map: Remove __libc_uid. 1998-06-24 Andreas Schwab * manual/terminal.texi (Allocation, Pseudo-Terminal Pairs): Fix typos. 1998-06-26 Ulrich Drepper * libc.map: Add Alpha-specific io function from protected namespace. --- sysdeps/i386/fpu/bits/mathinline.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index aa532cea05..ee00f5881a 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -581,13 +581,7 @@ __MATH_INLINE int __finite (double __x) __attribute__ ((__const__)); __MATH_INLINE int __finite (double __x) { - register int __result; - __asm__ __volatile__ - ("orl $0x800fffff, %0\n\t" - "incl %0\n\t" - "shrl $31, %0" - : "=r" (__result) : "0" (((int *) &__x)[1]) : "cc"); - return __result; + return ((((int *) &__x)[1] | 0x800fffff) + 1) >> 31; } /* Miscellaneous functions */ -- cgit 1.4.1