mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-05 01:00:14 +00:00
Update.
1997-05-07 13:26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makerules (lib): Put back dependency on lib-noranlib. ($(subdirs-stamps)): Remove dependency on stamp.* again. 1998-05-07 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/fpu/bits/mathinline.h: Use long long int also for test in __pow2 implementation. 1998-05-07 Andreas Jaeger <aj@arthur.rhein-neckar.de> * malloc/malloc.c (top_check): Add void as parameter to silent gcc.
This commit is contained in:
parent
6600049466
commit
ae9b308c6a
14
ChangeLog
14
ChangeLog
@ -1,9 +1,23 @@
|
|||||||
|
1997-05-07 13:26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||||
|
|
||||||
|
* Makerules (lib): Put back dependency on lib-noranlib.
|
||||||
|
($(subdirs-stamps)): Remove dependency on stamp.* again.
|
||||||
|
|
||||||
|
1998-05-07 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/i386/fpu/bits/mathinline.h: Use long long int also for
|
||||||
|
test in __pow2 implementation.
|
||||||
|
|
||||||
1998-04-16 07:42 Geoff Keating <geoffk@ozemail.com.au>
|
1998-04-16 07:42 Geoff Keating <geoffk@ozemail.com.au>
|
||||||
|
|
||||||
* Makeconfig [!build-static]: Link `static' binaries with libc_pic.a.
|
* Makeconfig [!build-static]: Link `static' binaries with libc_pic.a.
|
||||||
Still need *FLAGS-.o because we still sometimes build .o files.
|
Still need *FLAGS-.o because we still sometimes build .o files.
|
||||||
* db2/Makefile: Don't build libndbm.a if !build-static.
|
* db2/Makefile: Don't build libndbm.a if !build-static.
|
||||||
|
|
||||||
|
1998-05-07 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* malloc/malloc.c (top_check): Add void as parameter to silent gcc.
|
||||||
|
|
||||||
1998-04-16 07:42 Geoff Keating <geoffk@ozemail.com.au>
|
1998-04-16 07:42 Geoff Keating <geoffk@ozemail.com.au>
|
||||||
|
|
||||||
* configure.in: New test for broken gcc on PowerPC.
|
* configure.in: New test for broken gcc on PowerPC.
|
||||||
|
@ -491,7 +491,7 @@ CREATE_ARFLAGS := cru$(verbose)
|
|||||||
# This makes all the object files in the parent library archive.
|
# This makes all the object files in the parent library archive.
|
||||||
|
|
||||||
.PHONY: lib lib-noranlib
|
.PHONY: lib lib-noranlib
|
||||||
lib: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
|
lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
|
||||||
lib-noranlib: libobjs
|
lib-noranlib: libobjs
|
||||||
|
|
||||||
# For object-suffix $o, the list of objects with that suffix.
|
# For object-suffix $o, the list of objects with that suffix.
|
||||||
@ -543,8 +543,7 @@ endef
|
|||||||
subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
|
subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
|
||||||
subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
|
subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
|
||||||
ifndef subdir
|
ifndef subdir
|
||||||
$(subdirs-stamps): $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o) \
|
$(subdirs-stamps): subdir_lib;
|
||||||
subdir_lib;
|
|
||||||
endif
|
endif
|
||||||
object-suffixes-left = $(object-suffixes-for-libc)
|
object-suffixes-left = $(object-suffixes-for-libc)
|
||||||
include $(o-iterator)
|
include $(o-iterator)
|
||||||
|
@ -4246,8 +4246,13 @@ mem2chunk_check(mem) Void_t* mem;
|
|||||||
/* Check for corruption of the top chunk, and try to recover if
|
/* Check for corruption of the top chunk, and try to recover if
|
||||||
necessary. */
|
necessary. */
|
||||||
|
|
||||||
|
static int
|
||||||
|
#if __STD_C
|
||||||
|
top_check(void)
|
||||||
|
#else
|
||||||
static int
|
static int
|
||||||
top_check()
|
top_check()
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
mchunkptr t = top(&main_arena);
|
mchunkptr t = top(&main_arena);
|
||||||
char* brk, * new_brk;
|
char* brk, * new_brk;
|
||||||
|
@ -231,7 +231,7 @@ __inline_mathcode (__sgn, __x, \
|
|||||||
__inline_mathcode (__pow2, __x, \
|
__inline_mathcode (__pow2, __x, \
|
||||||
register long double __value; \
|
register long double __value; \
|
||||||
register long double __exponent; \
|
register long double __exponent; \
|
||||||
long int __p = (long int) __x; \
|
long long int __p = (long long int) __x; \
|
||||||
if (__x == (long double) __p) \
|
if (__x == (long double) __p) \
|
||||||
{ \
|
{ \
|
||||||
__asm __volatile__ \
|
__asm __volatile__ \
|
||||||
|
Loading…
Reference in New Issue
Block a user