diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-18 19:34:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-18 19:34:34 +0000 |
commit | 50441a984d7123d6d5708ceea1718c7229e747cf (patch) | |
tree | 2f586c38dc12a3d2cc87653257bb53d571748b71 /sysdeps/i386 | |
parent | f6c93bd9c82f9feabb171567fb0b25777997d7f6 (diff) | |
download | glibc-50441a984d7123d6d5708ceea1718c7229e747cf.tar glibc-50441a984d7123d6d5708ceea1718c7229e747cf.tar.gz glibc-50441a984d7123d6d5708ceea1718c7229e747cf.tar.bz2 glibc-50441a984d7123d6d5708ceea1718c7229e747cf.zip |
Update.
* sysdeps/unix/sysv/linux/x86_64/register-dump.h (register_dump):
Fix completely broken impleentation. The second parameter is of
type struct ucontext*.
* sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup): Always
inline.
* sysdeps/i386/i686/dl-hash.h: Don't inline _dl_elf_hash.
* sysdeps/generic/dl-hash.h: Likewise.
* sysdeps/generic/memcmp.c: Remove inline from
memcmp_common_alignment and memcmp_not_common_alignment definition.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/i686/dl-hash.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/i386/i686/dl-hash.h b/sysdeps/i386/i686/dl-hash.h index 179ec34397..61183d80da 100644 --- a/sysdeps/i386/i686/dl-hash.h +++ b/sysdeps/i386/i686/dl-hash.h @@ -1,5 +1,5 @@ /* Compute hash alue for given string according to ELF standard. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -26,7 +26,7 @@ optimized for the PII processors. Though it will run on i586 it would be much slower than the generic C implementation. So don't use it. */ -static inline unsigned int +static unsigned int _dl_elf_hash (const unsigned char *name) { unsigned int result; @@ -71,10 +71,9 @@ _dl_elf_hash (const unsigned char *name) "jnz 2b\n" "1:\t" : "=&r" (result), "=r" (name), "=&c" (temp0), "=&r" (temp1) - : "0" (0), "1" (name)); + : "0" (0), "1" (name)); return result; } #endif /* dl-hash.h */ - |