mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
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:
committed by
Jose E. Marchesi
parent
3bf7cb6860
commit
83318af493
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user