diff options
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r-- | binutils/dwarf.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index e4efd06..332d700 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -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; |