diff options
Diffstat (limited to 'newlib/libm')
-rw-r--r-- | newlib/libm/common/fdlibm.h | 4 | ||||
-rw-r--r-- | newlib/libm/machine/Makefile.am | 2 | ||||
-rw-r--r-- | newlib/libm/machine/Makefile.in | 2 | ||||
-rw-r--r-- | newlib/libm/math/e_pow.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libm/common/fdlibm.h b/newlib/libm/common/fdlibm.h index 5ca1a917b..cb18bd99b 100644 --- a/newlib/libm/common/fdlibm.h +++ b/newlib/libm/common/fdlibm.h @@ -11,11 +11,11 @@ * ==================================================== */ -/* CYGNUS LOCAL: Include files. */ +/* REDHAT LOCAL: Include files. */ #include <math.h> #include <machine/ieeefp.h> -/* CYGNUS LOCAL: Default to XOPEN_MODE. */ +/* REDHAT LOCAL: Default to XOPEN_MODE. */ #define _XOPEN_MODE /* Most routines need to check whether a float is finite, infinite, or not a diff --git a/newlib/libm/machine/Makefile.am b/newlib/libm/machine/Makefile.am index 4b972f7eb..ef8b143dd 100644 --- a/newlib/libm/machine/Makefile.am +++ b/newlib/libm/machine/Makefile.am @@ -20,7 +20,7 @@ endif # USE_LIBTOOL $(libm_machine_dir)/lib.a: -doc: +doc: ACLOCAL_AMFLAGS = -I ../.. CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host diff --git a/newlib/libm/machine/Makefile.in b/newlib/libm/machine/Makefile.in index 95be23b6d..8efbb941b 100644 --- a/newlib/libm/machine/Makefile.in +++ b/newlib/libm/machine/Makefile.in @@ -430,7 +430,7 @@ maintainer-clean $(libm_machine_dir)/lib.a: -doc: +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. diff --git a/newlib/libm/math/e_pow.c b/newlib/libm/math/e_pow.c index 9312085d4..240a18613 100644 --- a/newlib/libm/math/e_pow.c +++ b/newlib/libm/math/e_pow.c @@ -179,7 +179,7 @@ ivln2_l = 1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/ } /* (x<0)**(non-int) is NaN */ - /* CYGNUS LOCAL: This used to be + /* REDHAT LOCAL: This used to be if((((hx>>31)+1)|yisint)==0) return (x-x)/(x-x); but ANSI C says a right shift of a signed negative quantity is implementation defined. */ |