Avoid compiler warning about a variable that isn't used when
Nicholas Clark [Sun, 17 Sep 2006 18:52:00 +0000 (18:52 +0000)]
-DDEBUGGING is not in force.

p4raw-id: //depot/perl@28862

regcomp.c

index 9612c93..db73dfb 100644 (file)
--- 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);