[Lldb-commits] [lldb] [LLDB] Fix DW_OP_implicit_value GetOpcodeDataSize() error (PR #201344)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 8 08:54:56 PDT 2026
================
@@ -414,7 +414,7 @@ GetOpcodeDataSize(const DataExtractor &data, const lldb::offset_t data_offset,
case DW_OP_implicit_value: // 0x9e ULEB128 size followed by block of that size
// (DWARF4)
{
- uint64_t block_len = data.Skip_LEB128(&offset);
+ uint64_t block_len = data.GetULEB128(&offset);
----------------
adrian-prantl wrote:
Note for self Skip returns the number of bytes in the ULEB.
Code change LGTM
https://github.com/llvm/llvm-project/pull/201344
More information about the lldb-commits
mailing list