diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-06-01 04:43:03 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-06-01 04:43:03 +0000 |
commit | be701dc57f8b1a370c74b648a8826f266c5fbd02 (patch) | |
tree | f6d9dcec657a4ff18a8ff52d6bbecf7a74718505 /misc | |
parent | d0e7329df3ea43cb9e469ad32aafdbf7267ba2d0 (diff) | |
download | bundler-be701dc57f8b1a370c74b648a8826f266c5fbd02.tar.gz |
debug.c: more enums
* debug.c (ruby_dummy_gdb_enums): add enums for RObject, RModule,
RString, RArray.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/lldb_cruby.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/misc/lldb_cruby.py b/misc/lldb_cruby.py index 8284ac8498..78325b8ce7 100755 --- a/misc/lldb_cruby.py +++ b/misc/lldb_cruby.py @@ -22,20 +22,6 @@ def lldb_init(debugger): name = member.GetName() value = member.GetValueAsUnsigned() g[name] = value - global ROBJECT_EMBED_LEN_MAX, ROBJECT_EMBED - ROBJECT_EMBED_LEN_MAX = 3 - ROBJECT_EMBED = RUBY_FL_USER1 - global RMODULE_IS_OVERLAID, RMODULE_IS_REFINEMENT, RMODULE_INCLUDED_INTO_REFINEMENT - RMODULE_IS_OVERLAID = RUBY_FL_USER2 - RMODULE_IS_REFINEMENT = RUBY_FL_USER3 - RMODULE_INCLUDED_INTO_REFINEMENT = RUBY_FL_USER4 - global RSTRING_NOEMBED, RSTRING_EMBED_LEN_MASK, RSTRING_EMBED_LEN_SHIFT, RSTRING_EMBED_LEN_MAX, RSTRING_FSTR - RSTRING_NOEMBED = RUBY_FL_USER1 - RSTRING_EMBED_LEN_MASK = (RUBY_FL_USER2|RUBY_FL_USER3|RUBY_FL_USER4| - RUBY_FL_USER5|RUBY_FL_USER6) - RSTRING_EMBED_LEN_SHIFT = (RUBY_FL_USHIFT+2) - RSTRING_EMBED_LEN_MAX = (SIZEOF_VALUE*3)-1 - RSTRING_FSTR = RUBY_FL_USER17 def fixnum_p(x): return x & RUBY_FIXNUM_FLAG != 0 |