* dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):

Check for ".zdebug_line".
This commit is contained in:
Cary Coutant 2010-11-17 01:53:22 +00:00
parent 53403d2c53
commit ab8056e082
2 changed files with 19 additions and 10 deletions

View File

@ -1,3 +1,9 @@
2010-11-16 Cary Coutant <ccoutant@google.com>
PR gold/12220
* dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
Check for ".zdebug_line".
2010-11-16 Doug Kwan <dougkwan@google.com>
Cary Coutant <ccoutant@google.com>

View File

@ -68,16 +68,19 @@ Sized_dwarf_line_info<size, big_endian>::Sized_dwarf_line_info(Object* object,
directories_(), files_(), current_header_index_(-1)
{
unsigned int debug_shndx;
for (debug_shndx = 0; debug_shndx < object->shnum(); ++debug_shndx)
// FIXME: do this more efficiently: section_name() isn't super-fast
if (object->section_name(debug_shndx) == ".debug_line")
{
section_size_type buffer_size;
this->buffer_ = object->section_contents(debug_shndx, &buffer_size,
false);
this->buffer_end_ = this->buffer_ + buffer_size;
break;
}
for (debug_shndx = 1; debug_shndx < object->shnum(); ++debug_shndx)
{
// FIXME: do this more efficiently: section_name() isn't super-fast
std::string name = object->section_name(debug_shndx);
if (name == ".debug_line" || name == ".zdebug_line")
{
section_size_type buffer_size;
this->buffer_ = object->section_contents(debug_shndx, &buffer_size,
false);
this->buffer_end_ = this->buffer_ + buffer_size;
break;
}
}
if (this->buffer_ == NULL)
return;