Remove not used fields from DEFN

This commit is contained in:
yui-knk 2023-10-10 08:00:31 +09:00 committed by Yuichiro Kaneko
parent 7de6908a28
commit 5245123a4b
2 changed files with 0 additions and 2 deletions

View File

@ -11207,7 +11207,6 @@ static rb_node_defn_t *
rb_node_defn_new(struct parser_params *p, ID nd_mid, NODE *nd_defn, const YYLTYPE *loc)
{
rb_node_defn_t *n = NODE_NEWNODE(NODE_DEFN, rb_node_defn_t, loc);
n->not_used = 0;
n->nd_mid = nd_mid;
n->nd_defn = nd_defn;

View File

@ -739,7 +739,6 @@ typedef struct RNode_BLOCK_PASS {
typedef struct RNode_DEFN {
NODE node;
VALUE not_used;
ID nd_mid;
struct RNode *nd_defn;
} rb_node_defn_t;