m68k: add hidden feupdateenv and fetestexcept definitions

This commit is contained in:
Andreas Schwab 2010-10-11 23:14:37 +02:00
parent 0b5c1204bf
commit 2e1639a8a0
3 changed files with 11 additions and 2 deletions

View 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

View 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);

View 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)