]> git.saurik.com Git - bison.git/blobdiff - src/reader.c
(nullable_compute): Use abort rather than assert.
[bison.git] / src / reader.c
index 9f83a935b9183c77a3e6815cae2410da155d5ff7..5c65d020f47715648e90b64be7acdd7bb95f39d9 100644 (file)
@@ -539,10 +539,7 @@ reader (void)
     grammar = p;
   }
 
-  if (SYMBOL_NUMBER_MAX < nsyms)
-    fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
-          SYMBOL_NUMBER_MAX);
-
+  assert (nsyms <= SYMBOL_NUMBER_MAX);
   assert (nsyms == ntokens + nvars);
 
   xfclose (finput);