1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-27 16:39:08 +00:00

Remove functions from softfloat's Symbol.map that don't need to be exported.

Also use the proper number of underscores for internal names.  (Changing
the names should be fine, since apparently the symbols are currently
unused.)
This commit is contained in:
David Schultz 2012-01-16 04:06:56 +00:00
parent b1d046441d
commit 980ece8077
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230190
2 changed files with 14 additions and 20 deletions

View File

@ -18,16 +18,10 @@ FBSD_1.0 {
};
FBSDprivate_1.0 {
_softfloat_float_exception_flags;
_softfloat_float_exception_mask;
_softfloat_float_rounding_mode;
_softfloat_float_raise;
_softfloat_float32_eq;
_softfloat_float32_le;
_softfloat_float32_lt;
_softfloat_float64_eq;
_softfloat_float64_le;
_softfloat_float64_lt;
__softfloat_float_exception_flags;
__softfloat_float_exception_mask;
__softfloat_float_rounding_mode;
__softfloat_float_raise;
__eqdf2;
__eqsf2;
__gedf2;

View File

@ -5,17 +5,17 @@
* Move private identifiers with external linkage into implementation
* namespace. -- Klaus Klein <kleink@NetBSD.org>, May 5, 1999
*/
#define float_exception_flags _softfloat_float_exception_flags
#define float_exception_mask _softfloat_float_exception_mask
#define float_rounding_mode _softfloat_float_rounding_mode
#define float_raise _softfloat_float_raise
#define float_exception_flags __softfloat_float_exception_flags
#define float_exception_mask __softfloat_float_exception_mask
#define float_rounding_mode __softfloat_float_rounding_mode
#define float_raise __softfloat_float_raise
/* The following batch are called by GCC through wrappers */
#define float32_eq _softfloat_float32_eq
#define float32_le _softfloat_float32_le
#define float32_lt _softfloat_float32_lt
#define float64_eq _softfloat_float64_eq
#define float64_le _softfloat_float64_le
#define float64_lt _softfloat_float64_lt
#define float32_eq __softfloat_float32_eq
#define float32_le __softfloat_float32_le
#define float32_lt __softfloat_float32_lt
#define float64_eq __softfloat_float64_eq
#define float64_le __softfloat_float64_le
#define float64_lt __softfloat_float64_lt
/*
* Macros to define functions with the GCC expected names