I trust the parser accelators are getting added :-).

This commit is contained in:
Jeremy Hylton 2002-07-11 15:43:37 +00:00
parent 45228ca827
commit 7b4c8e485c
1 changed files with 0 additions and 6 deletions

View File

@ -25,16 +25,10 @@ PyGrammar_AddAccelerators(grammar *g)
{ {
dfa *d; dfa *d;
int i; int i;
#ifdef Py_DEBUG
fprintf(stderr, "Adding parser accelerators ...\n");
#endif
d = g->g_dfa; d = g->g_dfa;
for (i = g->g_ndfas; --i >= 0; d++) for (i = g->g_ndfas; --i >= 0; d++)
fixdfa(g, d); fixdfa(g, d);
g->g_accel = 1; g->g_accel = 1;
#ifdef Py_DEBUG
fprintf(stderr, "Done.\n");
#endif
} }
void void