]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Adapted for header file change.
authorUlrich Drepper <drepper@redhat.com>
Sun, 23 May 1999 09:46:25 +0000 (09:46 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 23 May 1999 09:46:25 +0000 (09:46 +0000)
sysdeps/arm/fpu/fegetenv.c
sysdeps/arm/fpu/feholdexcpt.c
sysdeps/arm/fpu/fesetenv.c
sysdeps/mips/fesetenv.c

index 5b31c5e6447790af628786b160a63358cca22f94..99dc1f0d8c00d8cc40bda4c6390a0841f9ef4ed5 100644 (file)
@@ -1,5 +1,5 @@
 /* Store current floating-point environment.
-   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,5 +25,5 @@ fegetenv (fenv_t *envp)
 {
   unsigned long int temp;
   _FPU_GETCW(temp);
-  envp->cw = temp;
+  envp->__cw = temp;
 }
index 5679ccc2438b160cf05b395fb16804530a1c1eb5..3faabd90eb4b4ea6d68f40ccf0c95a8c8c16f2df 100644 (file)
@@ -1,5 +1,5 @@
 /* Store current floating-point environment and clear exceptions.
-   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -27,7 +27,7 @@ feholdexcept (fenv_t *envp)
 
   /* Store the environment.  */
   _FPU_GETCW(temp);
-  envp->cw = temp;
+  envp->__cw = temp;
 
   /* Now set all exceptions to non-stop.  */
   temp &= ~(FE_ALL_EXCEPT << FE_EXCEPT_SHIFT);
index b2d3ec5e9febf8bec781a3306f9a0fd2bbd8c3df..7f3a434778c4e324d9a0750f6c618a323ea3d7fd 100644 (file)
@@ -1,5 +1,5 @@
 /* Install given floating-point environment.
-   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -27,7 +27,7 @@ fesetenv (const fenv_t *envp)
       _FPU_SETCW(_FPU_DEFAULT);
   else
     {
-      unsigned long temp = envp->cw;
+      unsigned long temp = envp->__cw;
       _FPU_SETCW(temp);
     }
 }
index 58df06391e82364fc81c9b61d02f7f15499340f5..116fbaefceb20f49d76ed052cde0f4ffb92a59c5 100644 (file)
@@ -1,5 +1,5 @@
 /* Install given floating-point environment.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1998.
 
@@ -27,5 +27,5 @@ fesetenv (const fenv_t *envp)
   if (envp == FE_DFL_ENV)
     _FPU_SETCW (_FPU_DEFAULT);
   else
-    _FPU_SETCW (envp->fp_control_register);
+    _FPU_SETCW (envp->__fp_control_register);
 }