1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
2000-07-28  Philip Blundell  <philb@gnu.org>

	* math/test-fpucw.c: Ignore reserved bits in control word.

2000-07-28  Philip Blundell  <philb@gnu.org>

	* sysdeps/unix/sysv/linux/arm/sysdep.h (PSEUDO_RET): New macro.
	(ret): Redefine to PSEUDO_RET.
	(PSEUDO): Remove jump to syscall_error.

2000-07-29  Mark Kettenis  <kettenis@gnu.org>

	* resolv/README: Add some information about using the resolver in
	multi-threaded code and with C++.  Spelling fixes.

2000-07-29  Mark Kettenis  <kettenis@gnu.org>

	* resolv/resolv.h (struct __sockaddr_in): Remove.
	(struct __res_state) [!_LIBC]: Remove reference to __sockaddr_in.

	* sysdeps/powerpc/backtrace.c (struct layout): Make pointers
	__unbounded.
This commit is contained in:
Ulrich Drepper
2000-07-29 18:08:15 +00:00
parent 2da345643a
commit 497b8ef43f
8 changed files with 166 additions and 76 deletions

View File

@ -29,10 +29,13 @@ main (void)
_FPU_GETCW (cw);
if (cw != _FPU_DEFAULT)
printf ("control word is 0x%x but should be 0x%x.\n", cw, _FPU_DEFAULT);
cw &= ~_FPU_RESERVED;
return (cw != _FPU_DEFAULT);
if (cw != (_FPU_DEFAULT & ~_FPU_RESERVED))
printf ("control word is 0x%x but should be 0x%x.\n",
cw, (_FPU_DEFAULT & ~_FPU_RESERVED));
return cw != (_FPU_DEFAULT & ~_FPU_RESERVED);
#else
return 0;