Browse Source

2005-02-25 H.J. Lu <hongjiu.lu@intel.com>

* readelf.c (display_debug_ranges): Print out offset for end of
	list.
binutils-csl-arm-2005q1-branch
H.J. Lu 22 years ago
parent
commit
35515c66de
  1. 5
      binutils/ChangeLog
  2. 6
      binutils/readelf.c

5
binutils/ChangeLog

@ -1,3 +1,8 @@
2005-02-25 H.J. Lu <hongjiu.lu@intel.com>
* readelf.c (display_debug_ranges): Print out offset for end of
list.
2005-02-23 Alan Modra <amodra@bigpond.net.au>
* dlltool.c: Warning fixes.

6
binutils/readelf.c

@ -9831,7 +9831,10 @@ display_debug_ranges (Elf_Internal_Shdr *section,
start += pointer_size;
if (begin == 0 && end == 0)
break;
{
printf (_(" %8.8lx <End of list>\n"), offset);
break;
}
/* Check base address specifiers. */
if (begin == -1UL && end != -1UL)
@ -9852,7 +9855,6 @@ display_debug_ranges (Elf_Internal_Shdr *section,
putchar ('\n');
}
fputs (_(" <End of list>\n"), stdout);
}
}
putchar ('\n');

Loading…
Cancel
Save