mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 00:07:43 +00:00
LibDebug: Keep track of 'prologue end'
This LineProgram instruction is emitted by Clang. Although we currently have no use for it (it's mostly a debugger feature), we need to handle this opcode, as otherwise CrashReporter wouldn't work.
This commit is contained in:
parent
f94532ea4e
commit
a59b9357e3
2 changed files with 6 additions and 0 deletions
|
@ -181,6 +181,7 @@ private:
|
|||
size_t m_file_index { 0 };
|
||||
bool m_is_statement { false };
|
||||
bool m_basic_block { false };
|
||||
bool m_prologue_end { false };
|
||||
|
||||
Vector<LineInfo> m_lines;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue