]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add hidden feupdateenv and fetestexcept definitions for MIPS.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 11 Oct 2010 14:58:01 +0000 (14:58 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 11 Oct 2010 14:58:01 +0000 (14:58 +0000)
ChangeLog.mips
sysdeps/mips/fpu/feupdateenv.c
sysdeps/mips/fpu/ftestexcept.c

index 3d0b975b72720ee5fb25038af5b25af7aa25e586..8daa71c1577458f19d8c941fe383be7bfd0406af 100644 (file)
@@ -1,3 +1,9 @@
+2010-10-11  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Add
+       libm_hidden_def.
+       * sysdeps/mips/fpu/ftestexcept.c (fetestexcept): Likewise.
+
 2010-08-13  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/mips/kernel-features.h
index 20b20e14c0f538cb43000d2164de92ca4ed3849b..5051562621222428c589c5305dbc3ba51f528423 100644 (file)
@@ -1,5 +1,5 @@
 /* Install given floating-point environment and raise exceptions.
-   Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2002, 2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@suse.de>, 1998.
 
@@ -41,3 +41,4 @@ feupdateenv (const fenv_t *envp)
   /* Success.  */
   return 0;
 }
+libm_hidden_def (feupdateenv)
index 6a833f75632766ded185137e7cae1f2d767482a9..385554c8624185313eaf20e71b4a09d87582f047 100644 (file)
@@ -1,5 +1,5 @@
 /* Test exception in current environment.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1998.
 
@@ -31,3 +31,4 @@ fetestexcept (int excepts)
 
   return cw & excepts & FE_ALL_EXCEPT;
 }
+libm_hidden_def (fetestexcept)