diff options
Diffstat (limited to 'sysdeps/powerpc/fsetexcptflg.c')
-rw-r--r-- | sysdeps/powerpc/fsetexcptflg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/powerpc/fsetexcptflg.c b/sysdeps/powerpc/fsetexcptflg.c index b762552dbf..347035e9d2 100644 --- a/sysdeps/powerpc/fsetexcptflg.c +++ b/sysdeps/powerpc/fsetexcptflg.c @@ -32,9 +32,9 @@ fesetexceptflag (const fexcept_t *flagp, int excepts) flag = *flagp & excepts; /* Replace the exception status */ - u.l[1] = (u.l[1] & ~(FPSCR_STICKY_BITS & excepts) - | flag & FPSCR_STICKY_BITS - | (flag >> (31 - FPSCR_VX) - (31 - FPSCR_VXSOFT) + u.l[1] = ((u.l[1] & ~(FPSCR_STICKY_BITS & excepts)) + | (flag & FPSCR_STICKY_BITS) + | (flag >> ((31 - FPSCR_VX) - (31 - FPSCR_VXSOFT)) & FE_INVALID_SOFTWARE)); /* Store the new status word (along with the rest of the environment). |