Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 431938
Collapse All | Expand All

(-)a/sysdeps/i386/fpu/fenv_private.h (-2 / +1 lines)
Lines 176-182 libc_feupdateenv_test_sse (fenv_t *e, int ex) Link Here
176
176
177
  /* Raise SIGFPE for any new exceptions since the hold.  Expect that
177
  /* Raise SIGFPE for any new exceptions since the hold.  Expect that
178
     the normal environment has all exceptions masked.  */
178
     the normal environment has all exceptions masked.  */
179
  if (__builtin_expect ((old_mxcsr >> 7) & cur_ex, 0))
179
  if (__glibc_unlikely (~(old_mxcsr >> 7) & cur_ex))
180
    __feraiseexcept (cur_ex);
180
    __feraiseexcept (cur_ex);
181
181
182
  /* Test for exceptions raised since the hold.  */
182
  /* Test for exceptions raised since the hold.  */
183
- 

Return to bug 431938