diff options
Diffstat (limited to 'sysdeps/m68k/fpu/bits/fenv.h')
-rw-r--r-- | sysdeps/m68k/fpu/bits/fenv.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/m68k/fpu/bits/fenv.h b/sysdeps/m68k/fpu/bits/fenv.h index a11e0724f1..b1608b9ddc 100644 --- a/sysdeps/m68k/fpu/bits/fenv.h +++ b/sysdeps/m68k/fpu/bits/fenv.h @@ -64,8 +64,9 @@ typedef unsigned int fexcept_t; corresponds to the layout of the block written by `fmovem'. */ typedef struct { - fexcept_t control_register; - fexcept_t status_register; + unsigned int control_register; + unsigned int status_register; + unsigned int instruction_address; } fenv_t; |