summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2011-02-04 16:20:11 +0000
committerDavid Mitchell <davem@iabyn.com>2011-02-06 21:34:43 +0000
commitdf34c13a8ee71657716cab3d21a3bbb0edab4e63 (patch)
treefd3fdba388d5c7f32d7cff406459a6a731f19b5e /pp_hot.c
parentff6e92e827a143094fdf3af374056b524759194b (diff)
downloadperl-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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 021b50fbec..0a2194a5d4 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -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)