summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2006-06-23 22:26:02 +0000
committerDave Mitchell <davem@fdisolutions.com>2006-06-23 22:26:02 +0000
commit166ba7cd14d64cc51fab907361ed5d3db4ab059c (patch)
treec7f5fb22df956e7807aafd1d572d24e068dabcfc /regexp.h
parent216f5eae3179f16935cfab26c5085e58ecfc337d (diff)
downloadperl-166ba7cd14d64cc51fab907361ed5d3db4ab059c.tar.gz
migrate TRIE branch in regmatch() to new FSM-esque paradigm
p4raw-id: //depot/perl@28421
Diffstat (limited to 'regexp.h')
-rw-r--r--regexp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/regexp.h b/regexp.h
index c48574a43f..8cff10c49f 100644
--- a/regexp.h
+++ b/regexp.h
@@ -211,7 +211,9 @@ typedef struct regmatch_state {
struct {
reg_trie_accepted *accept_buff;
- U32 accepted; /* how many accepting states we have seen */
+ U32 accepted; /* how many accepting states we have seen */
+ regnode *B; /* node following the trie */
+ regnode *me; /* only needed for debugging */
} trie;
struct {