]> git.saurik.com Git - bison.git/blobdiff - etc/bench.pl.in
maint: credit Wojciech Polak
[bison.git] / etc / bench.pl.in
index 829a760c2227be26eb14d4821504f0c93481911b..4d480d5eb751ade756396536f292797f83c3f318 100755 (executable)
@@ -134,8 +134,8 @@ sub calc_grammar ($$$)
     or die;
   print $out <<EOF;
 %{
+#include <assert.h>
 #include <stdio.h>
-
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
@@ -291,9 +291,8 @@ yylex (void)
 static int
 power (int base, int exponent)
 {
+  assert (0 <= exponent);
   int res = 1;
-  if (exponent < 0)
-    exit (3);
   for (/* Niente */; exponent; --exponent)
     res *= base;
   return res;