]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 25 Apr 2001 18:29:10 +0000 (18:29 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 25 Apr 2001 18:29:10 +0000 (18:29 +0000)
2001-04-12  Paul Bame  <paul_bame@hp.com>

* sysdeps/hppa/fpu/fclrexcpt.c: Clear the exception flags, not the
enable flags.

ChangeLog
sysdeps/hppa/fpu/fclrexcpt.c

index c2b2d8192be7ead3326aaabfecdbc1e4435c73a0..12890ec0dd67799bed5ea392c67c1f7a35bebea2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
index 4c64027310928a912b1b224a8342c351a0ff0ba3..e8049e6b44953db3744bdf880802fc8c510cb32e 100644 (file)
@@ -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.  */
This page took 0.043722 seconds and 5 git commands to generate.