mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
Reverts an "enhancement" made in a previous delta which complained of
unprocessed augmentation data at the end of a CIE. * dwarf.c (read_cie): Revert check for unused augmentation data - it was bogus.
This commit is contained in:
parent
d5111a0e03
commit
c361b9ac1f
@ -1,3 +1,8 @@
|
||||
2014-12-24 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* dwarf.c (read_cie): Revert check for unused augmentation data -
|
||||
it was bogus.
|
||||
|
||||
2014-12-23 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
* objcopy.c (strip_usage): Reword --remove-section description.
|
||||
|
@ -5535,13 +5535,8 @@ read_cie (unsigned char *start, unsigned char *end,
|
||||
break;
|
||||
p++;
|
||||
}
|
||||
|
||||
if (q < qend)
|
||||
{
|
||||
warn (_("Not enough augmentation data (%lx bytes still needed)\n"),
|
||||
(long) ((augmentation_data + augmentation_data_len) - q));
|
||||
augmentation_data_len = q - augmentation_data;
|
||||
}
|
||||
/* Note - it is OK if this loop terminates with q < qend.
|
||||
Padding may have been inserted to align the end of the CIE. */
|
||||
}
|
||||
|
||||
*p_cie = fc;
|
||||
|
Loading…
Reference in New Issue
Block a user