summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorJemma Issroff <jemmaissroff@gmail.com>2022-05-04 14:27:35 -0400
committerAaron Patterson <aaron.patterson@gmail.com>2022-05-04 12:48:49 -0700
commit3a31b80bea97826ae113d9ace825c6ee27c2ae31 (patch)
treed59ad71a689ba7d16b9a60120b45e1bef3006903 /misc
parentbff31b3208071d40f9e193ef0cb95fb7aa2db62c (diff)
downloadruby-3a31b80bea97826ae113d9ace825c6ee27c2ae31.tar.gz
Update lldb helper for iseq disassembly to use correct var name
Diffstat (limited to 'misc')
-rw-r--r--misc/lldb_disasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/lldb_disasm.py b/misc/lldb_disasm.py
index d4fa7e2980..713a935285 100644
--- a/misc/lldb_disasm.py
+++ b/misc/lldb_disasm.py
@@ -144,7 +144,7 @@ class IseqDisassembler:
def insn_len(self, target, offset):
size_of_char = self.tChar.GetByteSize()
- symbol = target.FindSymbols("insn_len.t")[0].GetSymbol()
+ symbol = target.FindSymbols("rb_vm_insn_len_info")[0].GetSymbol()
section = symbol.GetStartAddress().GetSection()
addr_of_table = symbol.GetStartAddress().GetOffset()