diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-01-05 17:29:41 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-01-05 17:29:41 +0000 |
commit | e54b12b7797ece3410070f0d634b8ba9117dc1e1 (patch) | |
tree | cf101e2af45d538b88d0c7adce60b753688d89b4 /binutils/readelf.c | |
parent | 0ea390ed3c6677b871ce457c5cc003c7c6074128 (diff) | |
download | binutils-gdb-e54b12b7797ece3410070f0d634b8ba9117dc1e1.tar.gz |
2005-01-05 H.J. Lu <hongjiu.lu@intel.com>
* readelf.c (display_debug_loc): Display base address
specifiers. Always output <End of list>.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index c12e970817d..3fb94e86b45 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -9550,6 +9550,8 @@ display_debug_loc (Elf_Internal_Shdr *section, if (begin == -1UL && end != -1UL) { base_address = end; + printf (" %8.8lx %8.8lx %8.8lx (base address)\n", + offset, begin, end); continue; } @@ -9577,9 +9579,7 @@ display_debug_loc (Elf_Internal_Shdr *section, start += length; } - if (j < debug_information [i].num_loc_offsets -1) - printf (_(" <End of list>")); - printf ("\n"); + fputs (_(" <End of list>\n"), stdout); } } return 1; |