[Lldb-commits] [lldb] [LLDB] Fix DW_OP_implicit_value GetOpcodeDataSize() error (PR #201344)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 9 09:22:47 PDT 2026
================
@@ -623,6 +623,16 @@ TEST(DWARFExpression, DW_OP_implicit_value) {
EXPECT_THAT_EXPECTED(
Evaluate({DW_OP_implicit_value, bytes, 0x11, 0x22, 0x33, 0x44}),
ExpectHostAddress({0x11, 0x22, 0x33, 0x44}));
+
+ // Verify that GetOpcodeDataSize correctly skips DW_OP_implicit_value
+ // (ULEB128 length + 1-byte data block)
----------------
JDevlieghere wrote:
https://github.com/llvm/llvm-project/pull/202706
https://github.com/llvm/llvm-project/pull/201344
More information about the lldb-commits
mailing list