]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
binutils: make read_cie aware of new augmentation char 'G'
authorIndu Bhagat <indu.bhagat@oracle.com>
Tue, 26 Nov 2024 00:13:39 +0000 (16:13 -0800)
committerIndu Bhagat <indu.bhagat@oracle.com>
Fri, 11 Apr 2025 03:54:24 +0000 (20:54 -0700)
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'.

binutils/dwarf.c

index 08bb623e405876d2f4fcd53d6cd30bac8ebf1def..f90eb3bf6df74bd0d8d46608c640252aca9667e7 100644 (file)
@@ -9162,6 +9162,8 @@ read_cie (unsigned char *start, unsigned char *end,
            ;
          else if (*p == 'B')
            ;
+         else if (*p == 'G')
+           ;
          else
            break;
          p++;