From: Nicholas Clark Date: Sun, 17 Sep 2006 18:52:00 +0000 (+0000) Subject: Avoid compiler warning about a variable that isn't used when X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=be981c670f6cd575d33c165ebfacc6c0c96c358b;p=p5sagit%2Fp5-mst-13.2.git Avoid compiler warning about a variable that isn't used when -DDEBUGGING is not in force. p4raw-id: //depot/perl@28862 --- diff --git a/regcomp.c b/regcomp.c index 9612c93..db73dfb 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);