From f36ee4406e3600ea83021779ff26edee543afeff Mon Sep 17 00:00:00 2001 From: yui-knk Date: Sun, 22 Oct 2017 00:17:39 +0000 Subject: Remove not used node_type NODE_TO_ARY * ext/objspace/objspace.c (count_nodes): This node_type has not been used since r13236. * node.c (dump_node, rb_gc_mark_node): ditto * node.h (node_type, NEW_TO_ARY): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60332 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'node.h') diff --git a/node.h b/node.h index ef7bb9eeb4..9fc4b47285 100644 --- a/node.h +++ b/node.h @@ -168,8 +168,6 @@ enum node_type { #define NODE_ARGSPUSH NODE_ARGSPUSH NODE_SPLAT, #define NODE_SPLAT NODE_SPLAT - NODE_TO_ARY, -#define NODE_TO_ARY NODE_TO_ARY NODE_BLOCK_ARG, #define NODE_BLOCK_ARG NODE_BLOCK_ARG NODE_BLOCK_PASS, @@ -426,7 +424,6 @@ typedef struct RNode { #define NEW_ARGSCAT(a,b) NEW_NODE(NODE_ARGSCAT,a,b,0) #define NEW_ARGSPUSH(a,b) NEW_NODE(NODE_ARGSPUSH,a,b,0) #define NEW_SPLAT(a) NEW_NODE(NODE_SPLAT,a,0,0) -#define NEW_TO_ARY(a) NEW_NODE(NODE_TO_ARY,a,0,0) #define NEW_BLOCK_ARG(v) NEW_NODE(NODE_BLOCK_ARG,v,0,local_cnt(v)) #define NEW_BLOCK_PASS(b) NEW_NODE(NODE_BLOCK_PASS,0,b,0) #define NEW_ALIAS(n,o) NEW_NODE(NODE_ALIAS,n,o,0) -- cgit v1.2.3