diff options
Diffstat (limited to 'sysdeps/i386/fpu/fsetexcptflg.c')
-rw-r--r-- | sysdeps/i386/fpu/fsetexcptflg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/i386/fpu/fsetexcptflg.c b/sysdeps/i386/fpu/fsetexcptflg.c index 598b8d2233..5861b4ee8a 100644 --- a/sysdeps/i386/fpu/fsetexcptflg.c +++ b/sysdeps/i386/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -30,8 +30,8 @@ fesetexceptflag (const fexcept_t *flagp, int excepts) separately set the status word. */ __asm__ ("fnstenv %0" : "=m" (*&temp)); - temp.status_word &= ~(excepts & FE_ALL_EXCEPT); - temp.status_word |= *flagp & excepts & FE_ALL_EXCEPT; + temp.__status_word &= ~(excepts & FE_ALL_EXCEPT); + temp.__status_word |= *flagp & excepts & FE_ALL_EXCEPT; /* Store the new status word (along with the rest of the environment. Possibly new exceptions are set but they won't get executed unless |