mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00: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,15 +1674,12 @@ 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. */
|
||||
buf = cie->initial_instructions;
|
||||
if (cie->initial_instructions)
|
||||
buf = cie->initial_instructions;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user