From: Alan Modra Date: Tue, 6 Jul 2010 09:24:05 +0000 (+0000) Subject: * readelf.c (uncompress_section_contents): Avoid gcc-4.6 warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3dbc53042f0e29120fe037b1ebaca342fe71ad2;p=binutils-gdb.git * readelf.c (uncompress_section_contents): Avoid gcc-4.6 warning. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 74d22edf998..ab10e486c2b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2010-07-05 Alan Modra + + * readelf.c (uncompress_section_contents): Avoid gcc-4.6 warning. + 2010-07-03 Cary Coutant * objdump.c (load_specific_debug_section): Decompress section contents diff --git a/binutils/readelf.c b/binutils/readelf.c index 1c3cb8b2864..b16fa7a3d46 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -9869,12 +9869,10 @@ dump_section_as_bytes (Elf_Internal_Shdr * section, This is a copy of bfd_uncompress_section_contents, in bfd/compress.c */ static int -uncompress_section_contents (unsigned char ** buffer, dwarf_size_type * size) +uncompress_section_contents (unsigned char **buffer ATTRIBUTE_UNUSED, + dwarf_size_type *size ATTRIBUTE_UNUSED) { #ifndef HAVE_ZLIB_H - /* These are just to quiet gcc. */ - buffer = 0; - size = 0; return FALSE; #else dwarf_size_type compressed_size = *size;