summary refs log tree commit diff
path: root/sysdeps/m68k
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1999-01-04 01:36:57 +0000
committerAndreas Schwab <schwab@suse.de>1999-01-04 01:36:57 +0000
commit259163b8b38a85de66108dc2ebd343fc999c485c (patch)
treea9622bf1e503ed8ed5e3dbdc6d87dfcc5c431cb6 /sysdeps/m68k
parent28e9818f043ac5f96da06451bd40b5887fed6685 (diff)
downloadglibc-259163b8b38a85de66108dc2ebd343fc999c485c.tar.gz
glibc-259163b8b38a85de66108dc2ebd343fc999c485c.tar.xz
glibc-259163b8b38a85de66108dc2ebd343fc999c485c.zip
* 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.
Diffstat (limited to 'sysdeps/m68k')
-rw-r--r--sysdeps/m68k/dl-machine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/m68k/dl-machine.h b/sysdeps/m68k/dl-machine.h
index 067c2fbb88..f2fe553069 100644
--- a/sysdeps/m68k/dl-machine.h
+++ b/sysdeps/m68k/dl-machine.h
@@ -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;