2000-09-15  Andreas Jaeger  <aj@suse.de>

	* sysdeps/mips/fpu/fesetenv.c (__fesetenv): Handle FE_NOMASK_ENV.

	* sysdeps/mips/bits/fenv.h (FE_NOMASK_ENV): Define.
This commit is contained in:
Andreas Jaeger 2000-09-15 18:16:18 +00:00
parent 82ae4e9760
commit 70514a9f51
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2000-09-15 Andreas Jaeger <aj@suse.de>
* sysdeps/mips/fpu/fesetenv.c (__fesetenv): Handle FE_NOMASK_ENV.
* sysdeps/mips/bits/fenv.h (FE_NOMASK_ENV): Define.
2000-09-15 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/alpha/sysdep.h (inline_syscall_clobbers): Add memory

View File

@ -70,3 +70,8 @@ fenv_t;
/* If the default argument is used we use this value. */
#define FE_DFL_ENV ((__const fenv_t *) -1)
#ifdef __USE_GNU
/* Floating-point environment where none of the exception is masked. */
# define FE_NOMASK_ENV ((__const fenv_t *) -2)
#endif