Remove not used fields from YIELD
This commit is contained in:
parent
f6a2af255b
commit
58fc45325f
2
parse.y
2
parse.y
@ -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);
|
rb_node_yield_t *n = NODE_NEWNODE(NODE_YIELD, rb_node_yield_t, loc);
|
||||||
n->nd_head = nd_head;
|
n->nd_head = nd_head;
|
||||||
n->not_used = 0;
|
|
||||||
n->not_used2 = 0;
|
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
@ -542,8 +542,6 @@ typedef struct RNode_YIELD {
|
|||||||
NODE node;
|
NODE node;
|
||||||
|
|
||||||
struct RNode *nd_head;
|
struct RNode *nd_head;
|
||||||
VALUE not_used;
|
|
||||||
VALUE not_used2;
|
|
||||||
} rb_node_yield_t;
|
} rb_node_yield_t;
|
||||||
|
|
||||||
typedef struct RNode_LVAR {
|
typedef struct RNode_LVAR {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user