diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-01-02 23:25:27 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-01-03 00:23:55 -0800 |
commit | f9692056a8a7d0d25b58e9087606cf7ae5c3559c (patch) | |
tree | bce3dfc1ab35a3e78ff7cbb7456d73174b3c73ac /op.c | |
parent | 23368773cf89aff0fb71f505e364a14d9e704dbd (diff) | |
download | perl-f9692056a8a7d0d25b58e9087606cf7ae5c3559c.tar.gz |
op.c Remove redundant continue
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -9367,7 +9367,6 @@ Perl_ck_entersub_args_core(pTHX_ OP *entersubop, GV *namegv, SV *protosv) for (cvop = aop; cvop->op_sibling; cvop = cvop->op_sibling) ; if (PL_madskills) while (aop != cvop && aop->op_type == OP_STUB) { aop = aop->op_sibling; - continue; } if (aop != cvop) (void)too_many_arguments(entersubop, GvNAME(namegv)); |