From fbad9a25dbf090074a4efa848f7ca097b0382ef9 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 13 Aug 2001 10:43:29 +0000 Subject: [PATCH] Fix bug in previous delta --- bfd/elf32-v850.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bfd/elf32-v850.c b/bfd/elf32-v850.c index 0a5ccdf..5e89473 100644 --- a/bfd/elf32-v850.c +++ b/bfd/elf32-v850.c @@ -523,9 +523,11 @@ v850_elf_reloc_type_lookup (abfd, code) for (i = ARRAY_SIZE (v850_elf_reloc_map); i --;) if (v850_elf_reloc_map[i].bfd_reloc_val == code) { - BFD_ASSERT (v850_elf_howto_table[code].type == v850_elf_reloc_map[i].elf_reloc_val); + int elf_reloc_val = v850_elf_reloc_map[i].elf_reloc_val; + + BFD_ASSERT (v850_elf_howto_table[elf_reloc_val].type == elf_reloc_val); - return v850_elf_howto_table + code; + return v850_elf_howto_table + elf_reloc_val; } return NULL; -- 2.7.4