From: Martin Liska Date: Tue, 11 Oct 2022 13:25:06 +0000 (+0200) Subject: fix compressed_debug_section_names definition for "zlib" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=735fab23d68d66678eaa19e5751c49091c3bd299;p=binutils-gdb.git fix compressed_debug_section_names definition for "zlib" bfd/ChangeLog: * libbfd.c: Set COMPRESS_DEBUG_GABI_ZLIB for "zlib" value. --- diff --git a/bfd/libbfd.c b/bfd/libbfd.c index 14e7d8ef34f..3090e0ae64b 100644 --- a/bfd/libbfd.c +++ b/bfd/libbfd.c @@ -1249,7 +1249,7 @@ _bfd_generic_init_private_section_data (bfd *ibfd ATTRIBUTE_UNUSED, static const struct compressed_type_tuple compressed_debug_section_names[] = { { COMPRESS_DEBUG_NONE, "none" }, - { COMPRESS_DEBUG, "zlib" }, + { COMPRESS_DEBUG_GABI_ZLIB, "zlib" }, { COMPRESS_DEBUG_GNU_ZLIB, "zlib-gnu" }, { COMPRESS_DEBUG_GABI_ZLIB, "zlib-gabi" }, { COMPRESS_DEBUG_ZSTD, "zstd" },