]> git.saurik.com Git - bison.git/blobdiff - tests/input.at
tests: use assert instead of plain abort.
[bison.git] / tests / input.at
index 6d8d552c57a8695269012a639d217f38839d5d1a..0ed8635f9cbc109cb3622de2a6fe7321c95c16e3 100644 (file)
@@ -442,6 +442,7 @@ char apostrophe = '\'';
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <assert.h>
 %}
 /* %{ and %} can be here too. */
 
@@ -509,8 +510,7 @@ yylex (void)
 #output "; /* "
   */
   static size_t toknum;
-  if (! (toknum < sizeof input))
-    abort ();
+  assert (toknum < sizeof input);
   yylval = value_as_yystype (input[toknum]);
   return input[toknum++];
 }