diff options
author | David Mitchell <davem@iabyn.com> | 2011-02-04 16:20:11 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2011-02-06 21:34:43 +0000 |
commit | df34c13a8ee71657716cab3d21a3bbb0edab4e63 (patch) | |
tree | fd3fdba388d5c7f32d7cff406459a6a731f19b5e /pp_hot.c | |
parent | ff6e92e827a143094fdf3af374056b524759194b (diff) | |
download | perl-df34c13a8ee71657716cab3d21a3bbb0edab4e63.tar.gz |
pp_subst: remove a duplicate label
(both nope: and ret_no: labelled the same chunk of exit code)
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2161,7 +2161,7 @@ PP(pp_subst) s = CALLREG_INTUIT_START(rx, TARG, s, strend, r_flags, NULL); if (!s) - goto nope; + goto ret_no; /* How to do it in subst? */ /* if ( (RX_EXTFLAGS(rx) & RXf_CHECK_ALL) && !PL_sawampersand @@ -2414,7 +2414,6 @@ PP(pp_subst) } /* NOTREACHED */ -nope: ret_no: SPAGAIN; if (rpm->op_pmflags & PMf_NONDESTRUCT) |