[PATCH] mips: Don't use MIN in dl-machine.h
H.J. Lu
hongjiu.lu@intel.com
Thu Nov 30 22:55:00 GMT 2017
MIN is used, but param.h may not be included, so expand its single use
inline.
Tested with build-many-glibcs.py. OK for master?
H.J.
--
* sysdeps/mips/dl-machine.h (elf_machine_reloc): Expand MIN.
---
sysdeps/mips/dl-machine.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h
index da9d6332ea..904824b908 100644
--- a/sysdeps/mips/dl-machine.h
+++ b/sysdeps/mips/dl-machine.h
@@ -695,7 +695,8 @@ elf_machine_reloc (struct link_map *map, ElfW(Addr) r_info,
RTLD_PROGNAME, strtab + refsym->st_name);
}
memcpy (reloc_addr, (void *) value,
- MIN (sym->st_size, refsym->st_size));
+ sym->st_size < refsym->st_size
+ ? sym->st_size : refsym->st_size);
break;
}
--
2.14.3
More information about the Libc-alpha
mailing list