From: Indu Bhagat Date: Tue, 26 Nov 2024 00:13:39 +0000 (-0800) Subject: binutils: make read_cie aware of new augmentation char 'G' X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08e5abd65230f60bdd26036251739c12ed8042e6;p=thirdparty%2Fbinutils-gdb.git binutils: make read_cie aware of new augmentation char 'G' This allows objdump/readelf to dump DWARF/EH Frame info when the stack frame makes use of MTE tagging. ChangeLog: * binutils/dwarf.c (read_cie): Add handling for augmentation char 'G'. --- diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 08bb623e405..f90eb3bf6df 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -9162,6 +9162,8 @@ read_cie (unsigned char *start, unsigned char *end, ; else if (*p == 'B') ; + else if (*p == 'G') + ; else break; p++;