mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00
LibDebug: Keep track of the SetEpilogueBegin LineProgram OpCode
This prevents a crash with clang 16.
This commit is contained in:
parent
1e1fcb2ae7
commit
aa0ed4ab4e
2 changed files with 5 additions and 0 deletions
|
@ -252,6 +252,10 @@ ErrorOr<void> LineProgram::handle_standard_opcode(u8 opcode)
|
|||
m_prologue_end = true;
|
||||
break;
|
||||
}
|
||||
case StandardOpcodes::SetEpilogueBegin: {
|
||||
m_epilogue_begin = true;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
dbgln("Unhandled LineProgram opcode {}", opcode);
|
||||
VERIFY_NOT_REACHED();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue