This was warning under gcc 4.7.2
const U8 *s;
STRLEN i;
STRLEN len;
const U8 *s;
STRLEN i;
STRLEN len;
U32 frequency = 256;
MAGIC *mg;
U32 frequency = 256;
MAGIC *mg;
+ PERL_DEB( STRLEN rarest = 0 );
PERL_ARGS_ASSERT_FBM_COMPILE;
PERL_ARGS_ASSERT_FBM_COMPILE;
s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
for (i = 0; i < len; i++) {
if (PL_freq[s[i]] < frequency) {
s = (const unsigned char*)(SvPVX_const(sv)); /* deeper magic */
for (i = 0; i < len; i++) {
if (PL_freq[s[i]] < frequency) {
+ PERL_DEB( rarest = i );
frequency = PL_freq[s[i]];
}
}
frequency = PL_freq[s[i]];
}
}