summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2021-07-19 13:52:14 -0400
committerPeter Zhu <peter@peterzhu.ca>2021-08-23 09:15:42 -0400
commit48ff7a9f3e47bffb3e4d067a12ba9b936261caa0 (patch)
tree47e91d54c6f6120d9a602274b1524443b050ae01 /misc
parent83244b8c893ea2e140095888d88146c27959bfc0 (diff)
[Feature #18045] Remove T_PAYLOAD
This commit removes T_PAYLOAD since the new VWA implementation no longer requires T_PAYLOAD types. Co-authored-by: Aaron Patterson <tenderlove@ruby-lang.org>
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4680
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/lldb_cruby.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/misc/lldb_cruby.py b/misc/lldb_cruby.py
index 3f0479b51f..1dbdc03eee 100755
--- a/misc/lldb_cruby.py
+++ b/misc/lldb_cruby.py
@@ -330,9 +330,6 @@ def lldb_inspect(debugger, target, result, val):
elif flType == RUBY_T_HASH:
result.write("T_HASH: %s" % flaginfo)
append_command_output(debugger, "p *(struct RHash *) %0#x" % val.GetValueAsUnsigned(), result)
- elif flType == RUBY_T_PAYLOAD:
- result.write("T_PAYLOAD: %s" % flaginfo)
- append_command_output(debugger, "p *(struct RPayload *) %0#x" % val.GetValueAsUnsigned(), result)
elif flType == RUBY_T_BIGNUM:
tRBignum = target.FindFirstType("struct RBignum").GetPointerType()
val = val.Cast(tRBignum)