m68k: add hidden feupdateenv and fetestexcept definitions
authorAndreas Schwab <schwab@linux-m68k.org>
Mon, 11 Oct 2010 21:14:37 +0000 (23:14 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 11 Oct 2010 21:14:37 +0000 (23:14 +0200)
ChangeLog.m68k
sysdeps/m68k/fpu/feupdateenv.c
sysdeps/m68k/fpu/ftestexcept.c

index e66559a..a2c4ee2 100644 (file)
@@ -1,3 +1,10 @@
+2010-10-11  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * sysdeps/m68k/fpu/feupdateenv.c (feupdateenv): Add
+       libm_hidden_ver.
+       * sysdeps/m68k/fpu/ftestexcept.c (feupdateenv): Add
+       libm_hidden_def.
+
 2010-08-25  Andreas Schwab  <schwab@linux-m68k.org>
 
        * sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
index 2a68313..9c0fb21 100644 (file)
@@ -1,5 +1,5 @@
 /* Install given floating-point environment and raise exceptions.
-   Copyright (C) 1997,99,2000,01 Free Software Foundation, Inc.
+   Copyright (C) 1997,1999-2001,2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
 
@@ -47,4 +47,5 @@ strong_alias (__feupdateenv, __old_feupdateenv)
 compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
 #endif
 
+libm_hidden_ver (__feupdateenv, feupdateenv)
 versioned_symbol (libm, __feupdateenv, feupdateenv, GLIBC_2_2);
index 3157c90..ce18091 100644 (file)
@@ -1,5 +1,5 @@
 /* Test exception in current environment.
-   Copyright (C) 1997 Free Software Foundation, Inc.
+   Copyright (C) 1997, 2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
 
@@ -30,3 +30,4 @@ fetestexcept (int excepts)
 
   return fpsr & excepts & FE_ALL_EXCEPT;
 }
+libm_hidden_def (fetestexcept)