diff options
author | Karl Williamson <khw@cpan.org> | 2020-03-27 20:59:38 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-10-16 07:01:40 -0600 |
commit | f97d9711c850a2acc3e6bc7156ce1e23f957b460 (patch) | |
tree | 90114a9440722b30d91eec67b8f54680d22d93d8 /pod/perldebguts.pod | |
parent | 5f162c354443de3e4d8e95f01acd019ab5bf32a9 (diff) | |
download | perl-f97d9711c850a2acc3e6bc7156ce1e23f957b460.tar.gz |
regcomp.sym: Make adjacent opcodes for 2 similar regnodes
These are often tested together. By making them adjacent we can use
inRANGE.
Diffstat (limited to 'pod/perldebguts.pod')
-rw-r--r-- | pod/perldebguts.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perldebguts.pod b/pod/perldebguts.pod index 20a3ea4b14..2a3152a9c0 100644 --- a/pod/perldebguts.pod +++ b/pod/perldebguts.pod @@ -689,6 +689,9 @@ will be lost. (string folded except MICRO in non-UTF8 patterns; doesn't contain SHARP S unless UTF-8; folded length <= unfolded) + EXACTFAA_NO_TRIE str Like EXACTFAA, (string not UTF-8, folded + except: MICRO, SHARP S; folded length <= + unfolded, not currently trie-able) EXACTFUP str Like EXACT, but match using /iu rules; (string not UTF-8, folded except MICRO: @@ -697,9 +700,6 @@ will be lost. EXACTFLU8 str Like EXACTFU, but use /il, UTF-8, (string is folded, and everything in it is above 255 - EXACTFAA_NO_TRIE str Like EXACTFAA, (string not UTF-8, folded - except: MICRO, SHARP S; folded length <= - unfolded, not currently trie-able) EXACT_REQ8 str Like EXACT, but only UTF-8 encoded targets can match |