mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-16 07:20:46 +00:00
LibDebug: Add support for the various DW_FORM_block types
This fixes #2885.
This commit is contained in:
parent
52ab2cead4
commit
240eb3242a
Notes:
sideshowbarker
2024-07-19 04:35:30 +09:00
Author: https://github.com/itamar8910
Commit: 240eb3242a
Pull-request: https://github.com/SerenityOS/serenity/pull/2890
Issue: https://github.com/SerenityOS/serenity/issues/2885
3 changed files with 41 additions and 7 deletions
|
@ -52,6 +52,7 @@ public:
|
|||
Boolean,
|
||||
DwarfExpression,
|
||||
SecOffset,
|
||||
RawBytes,
|
||||
} type;
|
||||
|
||||
union {
|
||||
|
@ -62,7 +63,7 @@ public:
|
|||
struct {
|
||||
u32 length;
|
||||
const u8* bytes; // points to bytes in the memory mapped elf image
|
||||
} as_dwarf_expression;
|
||||
} as_raw_bytes;
|
||||
} data {};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue