X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/e9071366c3104e4e4a2490c16d53e7eeef670f45..21fe08cadcb84fddd5038ac6857a904dbe1ad885:/src/main.c diff --git a/src/main.c b/src/main.c index 4d7fd331..69e72fec 100644 --- a/src/main.c +++ b/src/main.c @@ -43,6 +43,7 @@ #include "print_graph.h" #include "reader.h" #include "reduce.h" +#include "scan-gram.h" #include "symtab.h" #include "tables.h" #include "uniqstr.h" @@ -109,7 +110,7 @@ main (int argc, char *argv[]) timevar_pop (TV_LALR); /* Find and record any conflicts: places where one token of - look-ahead is not enough to disambiguate the parsing. In file + lookahead is not enough to disambiguate the parsing. In file conflicts. Also resolve s/r conflicts based on precedence declarations. */ timevar_push (TV_CONFLICTS); @@ -149,7 +150,7 @@ main (int argc, char *argv[]) if (complaint_issued) goto finish; - /* Look-ahead tokens are no longer needed. */ + /* Lookahead tokens are no longer needed. */ timevar_push (TV_FREE); lalr_free (); timevar_pop (TV_FREE);