summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2021-08-24 13:14:14 -0400
committerPeter Zhu <peter@peterzhu.ca>2021-08-25 09:28:21 -0400
commitc08d4067be83d03a6fcd173ffd2d206a01d09c90 (patch)
treec382374bbf5a4cc888cebf2602b10eecfc151711 /misc
parent01be881f35e6dafbd8498f2ca9a02eedb1f40319 (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/4773
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)