diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-07 10:48:08 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-07 10:48:08 +0000 |
commit | a6aa0b75b0eb9c04ef2df088983c48258eaa6f4f (patch) | |
tree | f2d1fc5f1d616c26c1bca41e0452972061e7f6a0 /op.c | |
parent | 6d7dd4a5599d02a363fe81969a440e5b6fbcae2a (diff) | |
download | perl-a6aa0b75b0eb9c04ef2df088983c48258eaa6f4f.tar.gz |
Remove a now un-needed goto from Perl_peep().
p4raw-id: //depot/perl@30863
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) { |