Message-ID: <
9b18b3110606130039v1c6a3fe6s448e92ab2a05888a@mail.gmail.com>
p4raw-id: //depot/perl@28391
SV *re_trie_maxbuff = NULL;
GET_RE_DEBUG_FLAGS_DECL;
+#ifdef DEBUGGING
+ StructCopy(&zero_scan_data, &data_fake, scan_data_t);
+#endif
while (scan && OP(scan) != END && scan < last) {
/* Peephole optimizer: */
points=(U8**)SvPV_nolen(sv_points );
if (trie->bitmap && trie_type != trie_utf8_fold) {
- while (!TRIE_BITMAP_TEST(trie,*s) && s <= last_start ) {
+ while (s <= last_start && !TRIE_BITMAP_TEST(trie,*s) ) {
s++;
}
}
if (leftmost)
break;
else if (!charid && trie->bitmap && trie_type != trie_utf8_fold) {
- while (!TRIE_BITMAP_TEST(trie,*uc) && uc <= (U8*)last_start ) {
+ while ( uc <= (U8*)last_start && !TRIE_BITMAP_TEST(trie,*uc) ) {
uc++;
}
}