]> git.saurik.com Git - bison.git/commitdiff
glr.c: fix an unused argument issue
authorAkim Demaille <akim@lrde.epita.fr>
Fri, 4 Jan 2013 15:01:07 +0000 (16:01 +0100)
committerTheophile Ranquet <ranquet@lrde.epita.fr>
Fri, 11 Jan 2013 17:57:09 +0000 (18:57 +0100)
* data/glr.c (yyuserAction): "Use" yyrhslen, as in variant mode, we might
not use it.

data/glr.c

index faab3524c33b0d63506caef642345c8d4889b14e..1a545f32847aee6670d7ed1a360f0c0161285557 100644 (file)
@@ -771,7 +771,8 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp,
     (yystackp->yysplitPoint == YY_NULL);
   int yylow;
 ]b4_parse_param_use([yyvalp], [yylocp])dnl
     (yystackp->yysplitPoint == YY_NULL);
   int yylow;
 ]b4_parse_param_use([yyvalp], [yylocp])dnl
-[# undef yyerrok
+[  YYUSE (yyrhslen);
+# undef yyerrok
 # define yyerrok (yystackp->yyerrState = 0)
 # undef YYACCEPT
 # define YYACCEPT return yyaccept
 # define yyerrok (yystackp->yyerrState = 0)
 # undef YYACCEPT
 # define YYACCEPT return yyaccept