Browse Source

2001-10-20 H.J. Lu <hjl@gnu.org>

* elf32-cris.c (cris_reloc_type_lookup): Allow index 0.
binutils-2_12-branch
H.J. Lu 25 years ago
parent
commit
6a7805b5c0
  1. 4
      bfd/ChangeLog
  2. 2
      bfd/elf32-cris.c

4
bfd/ChangeLog

@ -1,3 +1,7 @@
2001-10-20 H.J. Lu <hjl@gnu.org>
* elf32-cris.c (cris_reloc_type_lookup): Allow index 0.
2001-10-19 H.J. Lu <hjl@gnu.org>
* elfcode.h (elf_object_p): Don't clear D_PAGED if the section

2
bfd/elf32-cris.c

@ -440,7 +440,7 @@ cris_reloc_type_lookup (abfd, code)
unsigned int i;
for (i = sizeof (cris_reloc_map) / sizeof (cris_reloc_map[0]);
--i;)
--i >= 0;)
if (cris_reloc_map [i].bfd_reloc_val == code)
return & cris_elf_howto_table [cris_reloc_map[i].cris_reloc_val];

Loading…
Cancel
Save