From 16bf045b1bea9ff86866e4bad2f896d33c85c23a Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sun, 21 Oct 2012 09:06:06 +0000 Subject: bfd/ * compress.c (bfd_cache_section_contents): New function. * bfd-in2.h: Regenerate. binutils/ * objdump.c (load_specific_debug_section): Use bfd_cache_section_contents. --- binutils/objdump.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'binutils/objdump.c') diff --git a/binutils/objdump.c b/binutils/objdump.c index 44e857a03f..3b8f282677 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -2272,13 +2272,7 @@ load_specific_debug_section (enum dwarf_section_display_enum debug, if (is_relocatable && debug_displays [debug].relocate) { - /* We want to relocate the data we've already read (and - decompressed), so we store a pointer to the data in - the bfd_section, and tell it that the contents are - already in memory. */ - sec->contents = section->start; - sec->flags |= SEC_IN_MEMORY; - sec->size = section->size; + bfd_cache_section_contents (sec, section->start); ret = bfd_simple_get_relocated_section_contents (abfd, sec, -- cgit v1.2.1