Remove not used fields from YIELD

This commit is contained in:
yui-knk 2023-10-05 20:31:34 +09:00 committed by Yuichiro Kaneko
parent f6a2af255b
commit 58fc45325f
2 changed files with 0 additions and 4 deletions

View File

@ -11238,8 +11238,6 @@ rb_node_yield_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
{
rb_node_yield_t *n = NODE_NEWNODE(NODE_YIELD, rb_node_yield_t, loc);
n->nd_head = nd_head;
n->not_used = 0;
n->not_used2 = 0;
return n;
}

View File

@ -542,8 +542,6 @@ typedef struct RNode_YIELD {
NODE node;
struct RNode *nd_head;
VALUE not_used;
VALUE not_used2;
} rb_node_yield_t;
typedef struct RNode_LVAR {