Skip to content

Commit

Permalink
compile.c: remove a unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mame committed Jan 31, 2020
1 parent 05229ce commit fac4385
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions compile.c
Expand Up @@ -5912,9 +5912,8 @@ iseq_compile_pattern_each(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *c
}
case NODE_HASH: {
NODE *n;
LABEL *match_failed, *fin;
LABEL *match_failed;
match_failed = NEW_LABEL(line);
fin = NEW_LABEL(line);

n = node->nd_head;
if (! (nd_type(n) == NODE_LIST && n->nd_alen == 2)) {
Expand Down

0 comments on commit fac4385

Please sign in to comment.