summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-11-21 19:47:10 +0000
committerNick Clifton <nickc@redhat.com>2000-11-21 19:47:10 +0000
commita0fc8ba1d8a2640c984480ab0a08ad7325bbee2c (patch)
treeeaedc3e437410b1e79855f3c884bb2bf59409405
parent732d96b6ca8092cee2893de8aa1f66a5210b23ea (diff)
downloadppe42-binutils-a0fc8ba1d8a2640c984480ab0a08ad7325bbee2c.tar.gz
ppe42-binutils-a0fc8ba1d8a2640c984480ab0a08ad7325bbee2c.zip
Fix compile time warning, and remove possibility of infinite loop.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf32-sh.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 9321be7c0d..228300f3a3 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-21 Nick Clifton <nickc@redhat.com>
+
+ * elf32-sh.c (sh_elf_reloc_loop): Fix compile time warning, and
+ remove possibility of infinite loop.
+
2000-11-20 Kazu Hirata <kazu@hxi.com>
* aix386-core.c: Fix formatting.
diff --git a/bfd/elf32-sh.c b/bfd/elf32-sh.c
index a3483035ed..11329423b4 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;
OpenPOWER on IntegriCloud