mirror of git://sourceware.org/git/glibc.git
* sysdeps/m68k/dl-machine.h (elf_machine_rela): Reorder expression
to avoid accessing global data in the usual case. 1998-12-28 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * sysdeps/m68k/dl-machine.h (elf_machine_rela): Reorder expression to avoid accessing global data in the usual case.
This commit is contained in:
parent
28e9818f04
commit
259163b8b3
|
@ -1,3 +1,8 @@
|
||||||
|
1998-12-28 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
|
* sysdeps/m68k/dl-machine.h (elf_machine_rela): Reorder expression
|
||||||
|
to avoid accessing global data in the usual case.
|
||||||
|
|
||||||
1999-01-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
1999-01-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
* wcsmbs/wcstold_l.c: Correct last patch to include wchar.h from
|
* wcsmbs/wcstold_l.c: Correct last patch to include wchar.h from
|
||||||
|
|
|
@ -272,7 +272,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
|
||||||
found. */
|
found. */
|
||||||
break;
|
break;
|
||||||
if (sym->st_size > refsym->st_size
|
if (sym->st_size > refsym->st_size
|
||||||
|| (_dl_verbose && sym->st_size < refsym->st_size))
|
|| (sym->st_size < refsym->st_size && _dl_verbose))
|
||||||
{
|
{
|
||||||
extern char **_dl_argv;
|
extern char **_dl_argv;
|
||||||
const char *strtab;
|
const char *strtab;
|
||||||
|
|
Loading…
Reference in New Issue