Remove a now un-needed goto from Perl_peep().
authorNicholas Clark <nick@ccl4.org>
Sat, 7 Apr 2007 10:48:08 +0000 (10:48 +0000)
committerNicholas Clark <nick@ccl4.org>
Sat, 7 Apr 2007 10:48:08 +0000 (10:48 +0000)
p4raw-id: //depot/perl@30863

op.c

diff --git a/op.c b/op.c
index 524777d..d457ea7 100644 (file)
--- 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) {