From: Paul Eggert Date: Sat, 7 Dec 2002 05:46:30 +0000 (+0000) Subject: (yy_reduce_print): Don't assume that yyrline[yyrule] promotes to int; X-Git-Tag: BISON-1_875~169 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/4f21fffe7e1e948cf2ad9fcf06c8a6716d48fc10 (yy_reduce_print): Don't assume that yyrline[yyrule] promotes to int; it might be unsigned int. --- diff --git a/data/yacc.c b/data/yacc.c index 4dd7d298..631547d1 100644 --- a/data/yacc.c +++ b/data/yacc.c @@ -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]]);