diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-06-23 22:26:02 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-06-23 22:26:02 +0000 |
commit | 166ba7cd14d64cc51fab907361ed5d3db4ab059c (patch) | |
tree | c7f5fb22df956e7807aafd1d572d24e068dabcfc /regexp.h | |
parent | 216f5eae3179f16935cfab26c5085e58ecfc337d (diff) | |
download | perl-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.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 { |