diff options
author | Ian Lance Taylor <iant@google.com> | 2007-11-14 18:33:47 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-11-14 18:33:47 +0000 |
commit | a18f2bd699004425944ed7633fdd792a6e332c96 (patch) | |
tree | 1428c6948111f99cc560f75002a7c1f96ea03bd0 /gold/dwarf_reader.cc | |
parent | 9a2d69841557c502021be98221a796ebe253fa09 (diff) | |
download | gdb-a18f2bd699004425944ed7633fdd792a6e332c96.zip gdb-a18f2bd699004425944ed7633fdd792a6e332c96.tar.gz gdb-a18f2bd699004425944ed7633fdd792a6e332c96.tar.bz2 |
From Craig Silverstein: Clean up DWARF line reader code.
Diffstat (limited to 'gold/dwarf_reader.cc')
-rw-r--r-- | gold/dwarf_reader.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gold/dwarf_reader.cc b/gold/dwarf_reader.cc index d07e3e7..e3e1963 100644 --- a/gold/dwarf_reader.cc +++ b/gold/dwarf_reader.cc @@ -630,7 +630,7 @@ Sized_dwarf_line_info<size, big_endian>::do_addr2line(unsigned int shndx, // If we found an exact match, great, otherwise find the last entry // before the passed-in offset. - if (it->offset > offset) + if (it == offsets->end() || it->offset > offset) { if (it == offsets->begin()) return ""; @@ -673,10 +673,6 @@ Sized_dwarf_line_info<size, big_endian>::do_addr2line(unsigned int shndx, // Dwarf_line_info routines. -// Note: this routine instantiates the appropriate -// Sized_dwarf_line_info templates for this config, so we don't have -// to have a separte instantiation section for them. - std::string Dwarf_line_info::one_addr2line(Object* object, unsigned int shndx, off_t offset) |