+2010-06-28  Alan Modra  <amodra@gmail.com>
+
+       * compress.c (bfd_uncompress_section_contents): Use ATTRIBUTE_UNUSED
+       to silence gcc warning.
+
 2010-06-27  Alan Modra  <amodra@gmail.com>
 
        * elf64-ppc.c (get_tls_mask): Don't segfault on NULL elf_section_data.
 
 /* ELF attributes support (based on ARM EABI attributes).
-   Copyright 2008
+   Copyright 2008, 2010
    Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 */
 
 bfd_boolean
-bfd_uncompress_section_contents (bfd_byte **buffer, bfd_size_type *size)
+bfd_uncompress_section_contents (bfd_byte **buffer ATTRIBUTE_UNUSED,
+                                bfd_size_type *size ATTRIBUTE_UNUSED)
 {
 #ifndef HAVE_ZLIB_H
-  /* These are just to quiet gcc.  */
-  buffer = 0;
-  size = 0;
   return FALSE;
 #else
   bfd_size_type compressed_size = *size;