]> git.saurik.com Git - bison.git/commitdiff
(yy_reduce_print): Don't assume that yyrline[yyrule] promotes to int;
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 7 Dec 2002 05:46:30 +0000 (05:46 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 7 Dec 2002 05:46:30 +0000 (05:46 +0000)
it might be unsigned int.

data/yacc.c

index 4dd7d2980dbf60d17ee10093eaf099281d3e7acb..631547d1284948ab66a10990fc5efb9c915abbe9 100644 (file)
@@ -577,8 +577,9 @@ do {                                                                \
                    [[int yyrule], [yyrule]])[
 {
   int yyi;
-  YYFPRINTF (stderr, "Reducing stack by rule %d (line %d), ",
-             yyrule - 1, yyrline[yyrule]);
+  unsigned int yylineno = yyrline[yyrule];
+  YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
+             yyrule - 1, yylineno);
   /* Print the symbols being reduced, and their result.  */
   for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
     YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);