1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

* 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:
Andreas Schwab
1999-01-04 01:36:57 +00:00
parent 28e9818f04
commit 259163b8b3
2 changed files with 6 additions and 1 deletions

View File

@@ -272,7 +272,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
found. */
break;
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;
const char *strtab;