From a6aa0b75b0eb9c04ef2df088983c48258eaa6f4f Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 7 Apr 2007 10:48:08 +0000 Subject: [PATCH] Remove a now un-needed goto from Perl_peep(). p4raw-id: //depot/perl@30863 --- op.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/op.c b/op.c index 524777d..d457ea7 100644 --- a/op.c +++ b/op.c @@ -7882,7 +7882,7 @@ Perl_peep(pTHX_ register OP *o) if (o->op_next && o->op_next->op_type == OP_STRINGIFY) { if (o->op_next->op_private & OPpTARGET_MY) { if (o->op_flags & OPf_STACKED) /* chained concats */ - goto ignore_optimization; + break; /* ignore_optimization */ else { /* assert(PL_opargs[o->op_type] & OA_TARGLEX); */ o->op_targ = o->op_next->op_targ; @@ -7892,7 +7892,6 @@ Perl_peep(pTHX_ register OP *o) } op_null(o->op_next); } - ignore_optimization: break; case OP_STUB: if ((o->op_flags & OPf_WANT) != OPf_WANT_LIST) { -- 2.7.4