From: Father Chrysostomos Date: Sun, 13 May 2012 06:10:58 +0000 (-0700) Subject: op.c: Remove redundant assignment X-Git-Tag: upstream/5.20.0~6801 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=530bea50c0f9b8f2f381af49c3e23abdc6ce19dd;p=platform%2Fupstream%2Fperl.git op.c: Remove redundant assignment This was added unnecessarily in commit ddeae0f14c. It is a local variable assigned to just before the function returns, so the value is never used in the OP_UNDEF case. --- diff --git a/op.c b/op.c index 339110d..f1d0261 100644 --- a/op.c +++ b/op.c @@ -1775,7 +1775,6 @@ Perl_op_lvalue_flags(pTHX_ OP *o, I32 type, U32 flags) switch (o->op_type) { case OP_UNDEF: - localize = 0; PL_modcount++; return o; case OP_STUB: