mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
* dwarf2-frame.c (decode_frame_entry_1): Skip unknown augmentations
without skipping the CIE.
This commit is contained in:
parent
acd65feb7e
commit
3e9a2e5245
@ -1,3 +1,8 @@
|
||||
2006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* dwarf2-frame.c (decode_frame_entry_1): Skip unknown augmentations
|
||||
without skipping the CIE.
|
||||
|
||||
2006-11-28 Vladimir Prus <vladimir@codesourcery.com>
|
||||
|
||||
Fetch varobj values from memory in a single place,
|
||||
|
@ -1674,14 +1674,11 @@ decode_frame_entry_1 (struct comp_unit *unit, gdb_byte *start, int eh_frame_p)
|
||||
augmentation++;
|
||||
}
|
||||
|
||||
/* Otherwise we have an unknown augmentation.
|
||||
Bail out unless we saw a 'z' prefix. */
|
||||
/* Otherwise we have an unknown augmentation. Assume that either
|
||||
there is no augmentation data, or we saw a 'z' prefix. */
|
||||
else
|
||||
{
|
||||
if (cie->initial_instructions == NULL)
|
||||
return end;
|
||||
|
||||
/* Skip unknown augmentations. */
|
||||
if (cie->initial_instructions)
|
||||
buf = cie->initial_instructions;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user