2001-12-18 Thomas Fitzsimmons <fitzsim@redhat.com>
* libc/machine/i386/f_*: Move to libm/machine/i386. 2001-12-18 Joel Sherrill <joel@OARcorp.com> * libm/machine/Makefile.am: Add dummy doc stub so "make info" works. 2001-12-17 Joel Sherrill <joel@OARcorp.com> * libc/include/sys/types.h (ino_t): RTEMS uses long also.
This commit is contained in:
@ -13,3 +13,5 @@ endif # USE_LIBTOOL
|
||||
|
||||
ACLOCAL_AMFLAGS = -I ../..
|
||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||
|
||||
doc:
|
||||
|
@ -418,6 +418,8 @@ clean-generic maintainer-clean-generic clean mostlyclean distclean \
|
||||
maintainer-clean
|
||||
|
||||
|
||||
doc:
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
@ -7,7 +7,7 @@ INCLUDES = -I $(newlib_basedir)/../newlib/libm/common $(NEWLIB_CFLAGS) $(CROSS_C
|
||||
LIB_SOURCES = \
|
||||
f_atan2.S f_atan2f.S f_exp.c f_expf.c \
|
||||
f_frexp.S f_frexpf.S f_log.S f_logf.S f_log10.S f_log10f.S \
|
||||
f_ldexp.S f_ldexpf.S f_pow.c f_powf.c f_tan.S f_tanf.S
|
||||
f_ldexp.S f_ldexpf.S f_pow.c f_powf.c f_tan.S f_tanf.S f_math.h i386mach.h
|
||||
|
||||
libi386_la_LDFLAGS = -Xcompiler -nostdlib
|
||||
|
||||
|
@ -90,7 +90,7 @@ INCLUDES = -I $(newlib_basedir)/../newlib/libm/common $(NEWLIB_CFLAGS) $(CROSS_C
|
||||
LIB_SOURCES = \
|
||||
f_atan2.S f_atan2f.S f_exp.c f_expf.c \
|
||||
f_frexp.S f_frexpf.S f_log.S f_logf.S f_log10.S f_log10f.S \
|
||||
f_ldexp.S f_ldexpf.S f_pow.c f_powf.c f_tan.S f_tanf.S
|
||||
f_ldexp.S f_ldexpf.S f_pow.c f_powf.c f_tan.S f_tanf.S f_math.h i386mach.h
|
||||
|
||||
|
||||
libi386_la_LDFLAGS = -Xcompiler -nostdlib
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of atan2 using Intel float instructions.
|
||||
|
||||
@ -31,3 +33,5 @@ SYM (_f_atan2):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of atan2f using Intel float instructions.
|
||||
|
||||
@ -31,3 +33,5 @@ SYM (_f_atan2f):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of exp using Intel float instructions.
|
||||
|
||||
@ -42,4 +44,4 @@ double _f_exp (double x)
|
||||
return x;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of exp using Intel float instructions.
|
||||
|
||||
@ -42,4 +44,4 @@ float _f_expf (float x)
|
||||
return x;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of frexp using Intel float instructions.
|
||||
|
||||
@ -42,3 +44,5 @@ SYM (_f_frexp):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of frexpf using Intel float instructions.
|
||||
|
||||
@ -42,3 +44,5 @@ SYM (_f_frexpf):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of ldexp using Intel float instructions.
|
||||
|
||||
@ -32,3 +34,5 @@ SYM (_f_ldexp):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of ldexpf using Intel float instructions.
|
||||
|
||||
@ -32,3 +34,5 @@ SYM (_f_ldexpf):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of log using Intel float instructions.
|
||||
|
||||
@ -34,3 +36,5 @@ SYM (_f_log):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of log10 using Intel float instructions.
|
||||
|
||||
@ -34,3 +36,5 @@ SYM (_f_log10):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of logf using Intel float instructions.
|
||||
|
||||
@ -34,3 +36,5 @@ SYM (_f_log10f):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of logf using Intel float instructions.
|
||||
|
||||
@ -34,3 +36,5 @@ SYM (_f_logf):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of pow using Intel float instructions.
|
||||
|
||||
@ -42,3 +44,4 @@ double _f_pow (double x, double y)
|
||||
return pow (x,y);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of pow using Intel float instructions.
|
||||
|
||||
@ -42,3 +44,4 @@ float _f_powf (float x, float y)
|
||||
return powf (x,y);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of tan using Intel float instructions.
|
||||
|
||||
@ -31,3 +33,5 @@ SYM (_f_tan):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
@ -8,6 +8,8 @@
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if !defined(_SOFT_FLOAT)
|
||||
|
||||
/*
|
||||
Fast version of tanf using Intel float instructions.
|
||||
|
||||
@ -31,3 +33,5 @@ SYM (_f_tanf):
|
||||
|
||||
leave
|
||||
ret
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user