diff options
author | yui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-21 16:09:51 +0000 |
---|---|---|
committer | yui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-21 16:09:51 +0000 |
commit | d98db55b736bbd59cbcb64e5d6a4e429508f985c (patch) | |
tree | a6d18807cfffe45aa9ebc9cdb5080a1b7182d81e /ext/objspace | |
parent | 111a2de495b1767f53e3632dee2ab55569dcb4f5 (diff) | |
download | ruby-d98db55b736bbd59cbcb64e5d6a4e429508f985c.tar.gz |
Remove not used node_type NODE_CVDECL
* compile.c (defined_expr0): This node_type has
not been used since r11614.
* ext/objspace/objspace.c (count_nodes): ditto
* node.c (dump_node): ditto
* node.h (node_type, NEW_CVDECL): ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/objspace')
-rw-r--r-- | ext/objspace/objspace.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/objspace/objspace.c b/ext/objspace/objspace.c index 2627574a9a..e5e3766ab7 100644 --- a/ext/objspace/objspace.c +++ b/ext/objspace/objspace.c @@ -399,7 +399,6 @@ count_nodes(int argc, VALUE *argv, VALUE os) COUNT_NODE(NODE_IASGN); COUNT_NODE(NODE_CDECL); COUNT_NODE(NODE_CVASGN); - COUNT_NODE(NODE_CVDECL); COUNT_NODE(NODE_OP_ASGN1); COUNT_NODE(NODE_OP_ASGN2); COUNT_NODE(NODE_OP_ASGN_AND); |