diff --git a/Libraries/LibDebug/Dwarf/LineProgram.cpp b/Libraries/LibDebug/Dwarf/LineProgram.cpp index b2f23700b0..5384e45449 100644 --- a/Libraries/LibDebug/Dwarf/LineProgram.cpp +++ b/Libraries/LibDebug/Dwarf/LineProgram.cpp @@ -212,7 +212,14 @@ void LineProgram::handle_standard_opcode(u8 opcode) m_address += address_increment; break; } + case StandardOpcodes::SetIsa: { + size_t isa; + m_stream.read_LEB128_unsigned(isa); + dbgln("SetIsa: {}", isa); + break; + } default: + dbgln("Unhandled LineProgram opcode {}", opcode); ASSERT_NOT_REACHED(); } }