From 84d7b001a67873d45e47e52e9978f09f78e96035 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 5 Mar 2009 16:31:50 +0000 Subject: [PATCH] * objdump.c (disassemble_section): If the computed next offset is not beyond the current offset then just continue to the end. --- binutils/ChangeLog | 5 +++++ binutils/objdump.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 8b4038a..45082bf 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2009-03-05 Nick Clifton + + * objdump.c (disassemble_section): If the computed next offset is + not beyond the current offset then just continue to the end. + 2009-03-04 Tristan Gingold * MAINTAINERS: Add myself as VMS maintainer. diff --git a/binutils/objdump.c b/binutils/objdump.c index 59289e0..265a8ea 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -1961,7 +1961,8 @@ disassemble_section (bfd *abfd, asection *section, void *info) else nextstop_offset = bfd_asymbol_value (nextsym) - section->vma; - if (nextstop_offset > stop_offset) + if (nextstop_offset > stop_offset + || nextstop_offset <= addr_offset) nextstop_offset = stop_offset; /* If a symbol is explicitly marked as being an object @@ -1984,7 +1985,7 @@ disassemble_section (bfd *abfd, asection *section, void *info) disassemble_bytes (pinfo, paux->disassemble_fn, insns, data, addr_offset, nextstop_offset, rel_offset, &rel_pp, rel_ppend); - + addr_offset = nextstop_offset; sym = nextsym; } -- 2.7.4