From a0fc8ba1d8a2640c984480ab0a08ad7325bbee2c Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 21 Nov 2000 19:47:10 +0000 Subject: Fix compile time warning, and remove possibility of infinite loop. --- bfd/elf32-sh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bfd/elf32-sh.c') diff --git a/bfd/elf32-sh.c b/bfd/elf32-sh.c index a348303..1132942 100644 --- a/bfd/elf32-sh.c +++ b/bfd/elf32-sh.c @@ -789,7 +789,7 @@ sh_elf_reloc_loop (r_type, input_bfd, input_section, contents, addr, { bfd_vma start0 = start - 4; - while (start0 >= 0 && IS_PPI (contents + start0)) + while (start0 && IS_PPI (contents + start0)) start0 -= 2; start0 = start - 2 - ((start - start0) & 2); start = start0 - cum_diff - 2; -- cgit v1.1