aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2015-08-31 16:03:42 +0930
committerAlan Modra <amodra@gmail.com>2015-08-31 16:26:10 +0930
commitd3435ae8ddeb3245b1358504f5382879f7fc04a7 (patch)
tree2f70a5fb41de5df08d46396f592ab781cdbd2a10 /bfd/elflink.c
parent6cae483a9dc8d07c2743067d32026650b7eb37a9 (diff)
downloadgdb-d3435ae8ddeb3245b1358504f5382879f7fc04a7.zip
gdb-d3435ae8ddeb3245b1358504f5382879f7fc04a7.tar.gz
gdb-d3435ae8ddeb3245b1358504f5382879f7fc04a7.tar.bz2
More "Make asection->id and asection->index unsigned"
Fixes regressions introduced by 7292b3ac. * elflink.c (elf_sort_symbol): Use correctly sized type for calculating signed section->id difference. (elf_link_add_object_symbols): Likewise. * pef.c (bfd_pef_scan_start_address): Warning fix. * vms-alpha.c (vms_new_section_hook): Likewise.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r--bfd/elflink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 192ce15..4f86700 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -3247,7 +3247,7 @@ elf_sort_symbol (const void *arg1, const void *arg2)
return vdiff > 0 ? 1 : -1;
else
{
- long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
+ int sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
if (sdiff != 0)
return sdiff > 0 ? 1 : -1;
}
@@ -4830,7 +4830,7 @@ error_free_dyn:
i = idx + 1;
else
{
- long sdiff = slook->id - h->root.u.def.section->id;
+ int sdiff = slook->id - h->root.u.def.section->id;
if (sdiff < 0)
j = idx;
else if (sdiff > 0)