aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-09-30 03:03:11 +0000
committerAlan Modra <amodra@gmail.com>2001-09-30 03:03:11 +0000
commit3c3e9281c33c80f7d3b03525088350b545b5051a (patch)
tree2b4afc0bf541d537cfb1db8b87b4d98a62861817
parent7efde2a4dd82ebed11602ba6e0441a49841422c0 (diff)
downloadgdb-3c3e9281c33c80f7d3b03525088350b545b5051a.zip
gdb-3c3e9281c33c80f7d3b03525088350b545b5051a.tar.gz
gdb-3c3e9281c33c80f7d3b03525088350b545b5051a.tar.bz2
* elf.c (_bfd_elf_link_hash_copy_indirect): Set ind refcounts to
the old dir refcount, so we indirectly set them to init_refcount. Short-circuit asserts when we've just verified they are true.
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/elf.c21
2 files changed, 20 insertions, 7 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index b1782e3..21a9c35 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-30 Alan Modra <amodra@bigpond.net.au>
+
+ * elf.c (_bfd_elf_link_hash_copy_indirect): Set ind refcounts to
+ the old dir refcount, so we indirectly set them to init_refcount.
+ Short-circuit asserts when we've just verified they are true.
+
2001-09-29 Alan Modra <amodra@bigpond.net.au>
* section.c (struct sec): Remove kept_section.
diff --git a/bfd/elf.c b/bfd/elf.c
index 2927d56..826dbbb 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -992,6 +992,8 @@ void
_bfd_elf_link_hash_copy_indirect (dir, ind)
struct elf_link_hash_entry *dir, *ind;
{
+ bfd_signed_vma tmp;
+
/* Copy down any references that we may have already seen to the
symbol which just became indirect. */
@@ -1004,19 +1006,23 @@ _bfd_elf_link_hash_copy_indirect (dir, ind)
/* Copy over the global and procedure linkage table refcount entries.
These may have been already set up by a check_relocs routine. */
- if (dir->got.refcount <= 0)
+ tmp = dir->got.refcount;
+ if (tmp <= 0)
{
dir->got.refcount = ind->got.refcount;
- ind->got.refcount = 0;
+ ind->got.refcount = tmp;
}
- BFD_ASSERT (ind->got.refcount <= 0);
+ else
+ BFD_ASSERT (ind->got.refcount <= 0);
- if (dir->plt.refcount <= 0)
+ tmp = dir->plt.refcount;
+ if (tmp <= 0)
{
dir->plt.refcount = ind->plt.refcount;
- ind->plt.refcount = 0;
+ ind->plt.refcount = tmp;
}
- BFD_ASSERT (ind->plt.refcount <= 0);
+ else
+ BFD_ASSERT (ind->plt.refcount <= 0);
if (dir->dynindx == -1)
{
@@ -1025,7 +1031,8 @@ _bfd_elf_link_hash_copy_indirect (dir, ind)
ind->dynindx = -1;
ind->dynstr_index = 0;
}
- BFD_ASSERT (ind->dynindx == -1);
+ else
+ BFD_ASSERT (ind->dynindx == -1);
}
void