]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(fenv_t): Add member to hold fpiar value, to match spirit of the
authorUlrich Drepper <drepper@redhat.com>
Sun, 14 Dec 1997 22:09:29 +0000 (22:09 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 14 Dec 1997 22:09:29 +0000 (22:09 +0000)
standard.

sysdeps/m68k/fpu/bits/fenv.h

index a11e0724f1217a8e1d896e303d8b28f9f6cc7248..b1608b9ddce24a2c2533fc5db4e7c65f4b5f075c 100644 (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;