diff options
author | Alan Modra <amodra@bigpond.net.au> | 2001-10-04 05:50:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2001-10-04 05:50:29 +0000 |
commit | 54a091b11aa65be2e2cb4d0d300267d4e665ea5c (patch) | |
tree | 127634bd4946070cf5da354cbfa7c1d1597d01be /bfd/elf32-mips.c | |
parent | 69f4d720c8d86eb4fe230c624a75130491d4f894 (diff) | |
download | gdb-54a091b11aa65be2e2cb4d0d300267d4e665ea5c.tar.gz |
* elf32-mips.c (mips_elf_record_global_got_symbol): Set got.offset
to 1 rather than 0 to avoid confusing copy_indirect_symbol.
(mips_elf_sort_hash_table_f): Compare got.offset against 1.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r-- | bfd/elf32-mips.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index bba115f8d2d..fd79bbaec62 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -5502,14 +5502,15 @@ mips_elf_record_global_got_symbol (h, info, g) && !bfd_elf32_link_record_dynamic_symbol (info, h)) return false; - /* If we've already marked this entry as need GOT space, we don't + /* If we've already marked this entry as needing GOT space, we don't need to do it again. */ - if (h->got.offset != (bfd_vma) - 1) + if (h->got.offset != (bfd_vma) -1) return true; /* By setting this to a value other than -1, we are indicating that - there needs to be a GOT entry for H. */ - h->got.offset = 0; + there needs to be a GOT entry for H. Avoid using zero, as the + generic ELF copy_indirect_symbol tests for <= 0. */ + h->got.offset = 1; return true; } @@ -5547,7 +5548,7 @@ mips_elf_sort_hash_table_f (h, data) if (h->root.dynindx == -1) return true; - if (h->root.got.offset != 0) + if (h->root.got.offset != 1) h->root.dynindx = hsd->max_non_got_dynindx++; else { |