mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
Update.
2001-04-12 Paul Bame <paul_bame@hp.com> * sysdeps/hppa/fpu/fclrexcpt.c: Clear the exception flags, not the enable flags.
This commit is contained in:
parent
d95f785397
commit
69d8605e84
@ -1,3 +1,8 @@
|
||||
2001-04-12 Paul Bame <paul_bame@hp.com>
|
||||
|
||||
* sysdeps/hppa/fpu/fclrexcpt.c: Clear the exception flags, not the
|
||||
enable flags.
|
||||
|
||||
2001-04-24 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/generic/bits/environments.h (_POSIX_V6_LPBIG_OFFBIG,
|
||||
|
@ -29,7 +29,7 @@ feclearexcept (int excepts)
|
||||
__asm__ ("fstd %%fr0,0(%1)" : "=m" (*sw) : "r" (sw));
|
||||
|
||||
/* Clear all the relevant bits. */
|
||||
sw[0] &= ~(excepts & FE_ALL_EXCEPT);
|
||||
sw[0] &= ~(excepts & FE_ALL_EXCEPT) << 27;
|
||||
__asm__ ("fldd 0(%0),%%fr0" : : "r" (sw));
|
||||
|
||||
/* Success. */
|
||||
|
Loading…
Reference in New Issue
Block a user