(fesetexceptflag): Set enable bits not raised exception bits.
authorUlrich Drepper <drepper@redhat.com>
Thu, 18 Dec 2003 03:58:26 +0000 (03:58 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 18 Dec 2003 03:58:26 +0000 (03:58 +0000)
sysdeps/hppa/fpu/fsetexcptflg.c

index 343ddad..af35f5a 100644 (file)
@@ -29,8 +29,7 @@ fesetexceptflag (const fexcept_t *flagp, int excepts)
   /* Get the current status word. */
   __asm__ ("fstd %%fr0,0(%1)" : "=m" (*sw) : "r" (sw));
 
-  /* Install the new exception flags bits.  */
-  sw[0] &= ~(excepts & (FE_ALL_EXCEPT >> 27));
+  /* Install new enable trap bits  */
   sw[0] |= (*flagp & excepts & FE_ALL_EXCEPT) << 27;
 
   /* Store the new status word.  */