about summary refs log tree commit diff
path: root/sysdeps/aarch64
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2017-10-04 11:09:33 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2017-10-04 17:49:38 +0100
commitdb4f87bad48ed93ae14f61121367a7cb94fa46ed (patch)
tree09667b243c01cd93c4e758904fbda4756b50b3fe /sysdeps/aarch64
parent32d372d548122b224ec63a520a780d9227094a48 (diff)
downloadglibc-db4f87bad48ed93ae14f61121367a7cb94fa46ed.tar.gz
glibc-db4f87bad48ed93ae14f61121367a7cb94fa46ed.tar.xz
glibc-db4f87bad48ed93ae14f61121367a7cb94fa46ed.zip
aarch64: don't use MIN in dl-machine.h
MIN is used, but param.h may not be included, so expand its
single use inline.

	* sysdeps/aarch64/dl-machine.h (elf_machine_rela): Expand MIN.
Diffstat (limited to 'sysdeps/aarch64')
-rw-r--r--sysdeps/aarch64/dl-machine.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/aarch64/dl-machine.h b/sysdeps/aarch64/dl-machine.h
index 60472036f5..b1245476dc 100644
--- a/sysdeps/aarch64/dl-machine.h
+++ b/sysdeps/aarch64/dl-machine.h
@@ -312,7 +312,8 @@ elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc,
 				RTLD_PROGNAME, strtab + refsym->st_name);
 	    }
 	  memcpy (reloc_addr_arg, (void *) value,
-		  MIN (sym->st_size, refsym->st_size));
+		  sym->st_size < refsym->st_size
+		  ? sym->st_size : refsym->st_size);
 	  break;
 
 	case AARCH64_R(RELATIVE):