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.
+2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
+
+ * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Expand MIN.
+
2017-10-04 Joseph Myers <joseph@codesourcery.com>
[BZ #22229]
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):