aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.h
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/elflink.h')
-rw-r--r--bfd/elflink.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/bfd/elflink.h b/bfd/elflink.h
index dcb1a8b..699b015 100644
--- a/bfd/elflink.h
+++ b/bfd/elflink.h
@@ -998,11 +998,15 @@ elf_link_add_object_symbols (abfd, info)
{
if (h->size != 0 && h->size != sym.st_size && ! size_change_ok)
(*_bfd_error_handler)
- ("Warning: size of symbol `%s' changed from %lu to %lu in %s",
- name, (unsigned long) h->size, (unsigned long) sym.st_size,
- bfd_get_filename (abfd));
-
- h->size = sym.st_size;
+ ("Warning: size of symbol `%s' was %lu, but in %s is %lu; using %lu",
+ name, (unsigned long) h->size,
+ bfd_get_filename (abfd), (unsigned long) sym.st_size,
+ (h->size < sym.st_size
+ ? (unsigned long) sym.st_size
+ : (unsigned long) h->size));
+
+ if (h->size < sym.st_size)
+ h->size = sym.st_size;
}
if (ELF_ST_TYPE (sym.st_info) != STT_NOTYPE
&& (definition || h->type == STT_NOTYPE))