From 48ff7a9f3e47bffb3e4d067a12ba9b936261caa0 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Mon, 19 Jul 2021 13:52:14 -0400 Subject: [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 --- misc/lldb_cruby.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'misc') 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) -- cgit v1.2.3