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 (is_aarch64_augmentation): Add handling for augmentation
	char 'G'.

---
[No change in V3]
This commit is contained in:
Indu Bhagat
2025-07-09 23:09:15 +02:00
committed by Jose E. Marchesi
parent 3bf7cb6860
commit 83318af493

View File

@@ -8905,7 +8905,7 @@ is_nomach_augmentation (char c ATTRIBUTE_UNUSED)
static bool
is_aarch64_augmentation (char c)
{
return (c == 'B');
return (c == 'B' || c == 'G');
}
void