(fenv_t): Add member to hold fpiar value, to match spirit of the

standard.
This commit is contained in:
Ulrich Drepper 1997-12-14 22:09:29 +00:00
parent 053ed29047
commit ac442bf7a9

View file

@ -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;