we no longer store the history len

This commit is contained in:
Alex Coyte 2015-06-18 14:55:34 +10:00 committed by Matthew Barr
parent 3a1429a621
commit 2471b770a8

View File

@ -914,8 +914,7 @@ void roseDumpText(const RoseEngine *t, FILE *f) {
t->lookaroundTableOffset - t->lookaroundReachOffset); t->lookaroundTableOffset - t->lookaroundReachOffset);
fprintf(f, "state space required : %u bytes\n", t->stateOffsets.end); fprintf(f, "state space required : %u bytes\n", t->stateOffsets.end);
fprintf(f, " - history buffer : %u bytes (+1 for len)\n", fprintf(f, " - history buffer : %u bytes\n", t->historyRequired);
t->historyRequired);
fprintf(f, " - exhaustion vector : %u bytes\n", (t->ekeyCount + 7) / 8); fprintf(f, " - exhaustion vector : %u bytes\n", (t->ekeyCount + 7) / 8);
fprintf(f, " - role state mmbit : %u bytes\n", t->stateSize); fprintf(f, " - role state mmbit : %u bytes\n", t->stateSize);
fprintf(f, " - floating matcher : %u bytes\n", t->floatingStreamState); fprintf(f, " - floating matcher : %u bytes\n", t->floatingStreamState);