]> git.saurik.com Git - bison.git/blobdiff - src/gram.c
Initial check-in introducing experimental GLR parsing. See entry in
[bison.git] / src / gram.c
index c1279282adc8d8f22a0df133a278aa09007c9fab..4d88b39b2c63cea367a8b009fedd6716b4a8488d 100644 (file)
@@ -43,6 +43,7 @@ symbol_number_t *token_translations = NULL;
 
 int max_user_token_number = 256;
 
+int glr_parser = 0;
 int pure_parser = 0;
 
 
@@ -249,4 +250,5 @@ grammar_free (void)
   XFREE (token_translations);
   /* Free the symbol table data structure.  */
   symbols_free ();
+  free_merger_functions ();
 }