aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-cris.c
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2001-10-24 03:39:54 +0000
committerHans-Peter Nilsson <hp@axis.com>2001-10-24 03:39:54 +0000
commit908d94bfcd7598fb97015ed5a7474a1d26cf56a5 (patch)
tree38b8c1986d4600fc11bc6d863b1a18353e5aaa41 /bfd/elf32-cris.c
parentce4148445e05aaf721403c78d72df187a11c4461 (diff)
downloadgdb-908d94bfcd7598fb97015ed5a7474a1d26cf56a5.zip
gdb-908d94bfcd7598fb97015ed5a7474a1d26cf56a5.tar.gz
gdb-908d94bfcd7598fb97015ed5a7474a1d26cf56a5.tar.bz2
* elf32-cris.c (cris_reloc_type_lookup): Change loop to use
unsigned, increasing index.
Diffstat (limited to 'bfd/elf32-cris.c')
-rw-r--r--bfd/elf32-cris.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c
index afcd397..19fa7c4 100644
--- a/bfd/elf32-cris.c
+++ b/bfd/elf32-cris.c
@@ -437,10 +437,9 @@ cris_reloc_type_lookup (abfd, code)
bfd * abfd ATTRIBUTE_UNUSED;
bfd_reloc_code_real_type code;
{
- int i;
+ unsigned int i;
- for (i = sizeof (cris_reloc_map) / sizeof (cris_reloc_map[0]);
- --i >= 0;)
+ for (i = 0; i < sizeof (cris_reloc_map) / sizeof (cris_reloc_map[0]); i++)
if (cris_reloc_map [i].bfd_reloc_val == code)
return & cris_elf_howto_table [cris_reloc_map[i].cris_reloc_val];