aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2023-09-29 21:15:55 +0900
committerYuichiro Kaneko <spiketeika@gmail.com>2023-09-30 11:22:06 +0900
commitfa54d06a408acbc60e718bae57e8c5d1a05cc160 (patch)
treebe94e1d17ef82fec733d79216c04941db4c04e19 /parse.y
parent0b67e3fd3ee9969a0c92867bec365104f2b43897 (diff)
downloadruby-fa54d06a408acbc60e718bae57e8c5d1a05cc160.tar.gz
Remove not used fields from POSTEXE
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 0 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index c3fe5f2932..b8f4981013 100644
--- a/parse.y
+++ b/parse.y
@@ -12033,9 +12033,7 @@ static rb_node_postexe_t *
rb_node_postexe_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
{
rb_node_postexe_t *n = NODE_NEWNODE(NODE_POSTEXE, rb_node_postexe_t, loc);
- n->not_used = 0;
n->nd_body = nd_body;
- n->not_used2 = 0;
return n;
}