2001-11-22  Andreas Jaeger  <aj@suse.de>

	* sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Add brace to
	avoid warning.
This commit is contained in:
Andreas Jaeger 2001-11-22 12:36:34 +00:00
parent d987f926bb
commit 91eaf586e5
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-11-22 Andreas Jaeger <aj@suse.de>
* sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Add brace to
avoid warning.
2001-11-21 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: New file.

View File

@ -56,7 +56,7 @@ static char rcsid[] = "$NetBSD: $";
else if (FP_ILOGBNAN != INT_MAX)
{
GET_LDOUBLE_WORDS(es,hx,lx,x);
if ((hx & 0x7fffffff|lx) == 0)
if (((hx & 0x7fffffff)|lx) == 0)
/* ISO C99 requires ilogbl(+-Inf) == INT_MAX. */
return INT_MAX;
}

View File

@ -1,4 +1,4 @@
ifeq ($(subdir),misc)
sysdep_routines += ioperm iopl
sysdep_headers += sys/perm.h sys/reg.h
sysdep_headers += sys/perm.h sys/reg.h sys/debugreg.h
endif