From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id CE390385703A; Tue, 11 Oct 2022 13:27:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CE390385703A Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Martin Liska To: bfd-cvs@sourceware.org Subject: [binutils-gdb] fix compressed_debug_section_names definition for "zlib" X-Act-Checkin: binutils-gdb X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: b0c295e1b8d0ec8af33c502a6b00b260d0425c04 X-Git-Newrev: 735fab23d68d66678eaa19e5751c49091c3bd299 Message-Id: <20221011132721.CE390385703A@sourceware.org> Date: Tue, 11 Oct 2022 13:27:21 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2022 13:27:21 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D735fab23d68d= 66678eaa19e5751c49091c3bd299 commit 735fab23d68d66678eaa19e5751c49091c3bd299 Author: Martin Liska Date: Tue Oct 11 15:25:06 2022 +0200 fix compressed_debug_section_names definition for "zlib" =20 bfd/ChangeLog: =20 * libbfd.c: Set COMPRESS_DEBUG_GABI_ZLIB for "zlib" value. Diff: --- bfd/libbfd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ATT= RIBUTE_UNUSED, static const struct compressed_type_tuple compressed_debug_section_names[]= =3D { { 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" },