]> git.saurik.com Git - bison.git/blobdiff - tests/conflicts.at
Merge remote-tracking branch 'origin/maint'
[bison.git] / tests / conflicts.at
index 6c71a3681d7e59bc63ca95c96e7f6a922a50038f..3cced5d7652d255a54f8b94cfcb6093a036f3842 100644 (file)
@@ -56,6 +56,7 @@ AT_DATA_GRAMMAR([input.y],
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <assert.h>
 
 #define YYERROR_VERBOSE 1
 ]AT_YYERROR_DEFINE[
@@ -66,8 +67,7 @@ static int
 yylex (void)
 {
   static size_t toknum;
-  if (! (toknum <= strlen (input)))
-    abort ();
+  assert (toknum <= strlen (input));
   return input[toknum++];
 }