Skip to content

Commit 7853ca0

Browse files
committed
fixup neater code in op.c
1 parent 1d616f9 commit 7853ca0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

op.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17069,10 +17069,8 @@ S_subsignature_build_defop(pTHX_ struct yy_parser_signature_param *param)
1706917069
OP *defexpr_start = LINKLIST(defexpr);
1707017070

1707117071
/* Need to build OP_PARAMTEST[ other: OP_PARAMSTORE[ default-expr ] ] */
17072-
OP *paramstore;
17073-
OP *paramtest = (OP *)alloc_LOGOP(OP_PARAMTEST,
17074-
paramstore = newUNOP(OP_PARAMSTORE, 0, defexpr),
17075-
defexpr_start);
17072+
OP *paramstore = newUNOP(OP_PARAMSTORE, 0, defexpr);
17073+
OP *paramtest = (OP *)alloc_LOGOP(OP_PARAMTEST, paramstore, defexpr_start);
1707617074

1707717075
paramtest->op_flags |= OPf_WANT_VOID;
1707817076
paramtest->op_targ = paramstore->op_targ = param->padix;

0 commit comments

Comments
 (0)