diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-07 22:19:59 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-07 22:19:59 +0000 |
commit | 9f632188f0b0dc5955d6854afcb2365e7e60cb32 (patch) | |
tree | d233e6466a7a26625537fbeea8eb82245a63d9dc /bfd | |
parent | e600bd345df96b0aca4005da435c21343f143890 (diff) | |
download | gdb-9f632188f0b0dc5955d6854afcb2365e7e60cb32.zip gdb-9f632188f0b0dc5955d6854afcb2365e7e60cb32.tar.gz gdb-9f632188f0b0dc5955d6854afcb2365e7e60cb32.tar.bz2 |
* dwarf2.c: Revert last change.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/dwarf2.c | 16 |
2 files changed, 12 insertions, 8 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 5acc0c6..37832d9 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2002-11-08 Alan Modra <amodra@bigpond.net.au> + + * dwarf2.c: Revert last change. + 2002-11-07 Michal Ludvig <mludvig@suse.cz> * dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info, diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 1d1e343..0639826 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -389,8 +389,8 @@ read_indirect_string (unit, buf, bytes_read_ptr) if (! stash->dwarf_abbrev_buffer) return NULL; - if (! bfd_simple_get_relocated_section_contents - (abfd, msec, stash->dwarf_str_buffer)) + if (! bfd_get_section_contents (abfd, msec, stash->dwarf_str_buffer, + (bfd_vma) 0, msec->_raw_size)) return NULL; } @@ -550,8 +550,8 @@ read_abbrevs (abfd, offset, stash) if (! stash->dwarf_abbrev_buffer) return 0; - if (! bfd_simple_get_relocated_section_contents - (abfd, msec, stash->dwarf_abbrev_buffer)) + if (! bfd_get_section_contents (abfd, msec, stash->dwarf_abbrev_buffer, + (bfd_vma) 0, msec->_raw_size)) return 0; } @@ -1023,8 +1023,8 @@ decode_line_info (unit, stash) if (! stash->dwarf_line_buffer) return 0; - if (! bfd_simple_get_relocated_section_contents - (abfd, msec, stash->dwarf_line_buffer)) + if (! bfd_get_section_contents (abfd, msec, stash->dwarf_line_buffer, + (bfd_vma) 0, msec->_raw_size)) return 0; /* FIXME: We ought to apply the relocs against this section before @@ -1939,8 +1939,8 @@ _bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset, start = stash->info_ptr_end - stash->info_ptr; - if (! bfd_simple_get_relocated_section_contents - (abfd, msec, stash->info_ptr + start)) + if (! bfd_get_section_contents (abfd, msec, stash->info_ptr + start, + (bfd_vma) 0, size)) continue; stash->info_ptr_end = stash->info_ptr + start + size; |