summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-09-17 18:52:00 +0000
committerNicholas Clark <nick@ccl4.org>2006-09-17 18:52:00 +0000
commitbe981c670f6cd575d33c165ebfacc6c0c96c358b (patch)
treebfd05294dcf5337f7295717728d4ed72d572e2f8 /regcomp.c
parentb5b5a8f0780c94d6973849925747efe92490a7da (diff)
downloadperl-be981c670f6cd575d33c165ebfacc6c0c96c358b.tar.gz
Avoid compiler warning about a variable that isn't used when
-DDEBUGGING is not in force. p4raw-id: //depot/perl@28862
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/regcomp.c b/regcomp.c
index 9612c93867..db73dfb953 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -2504,7 +2504,9 @@ S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
/* dont use tail as the end marker for this traverse */
for ( cur = startbranch ; cur != scan ; cur = regnext( cur ) ) {
regnode * const noper = NEXTOPER( cur );
+#if defined(DEBUGGING) || defined(NOJUMPTRIE)
regnode * const noper_next = regnext( noper );
+#endif
DEBUG_OPTIMISE_r({
regprop(RExC_rx, mysv, cur);