]> git.saurik.com Git - bison.git/blobdiff - tests/calc.at
* data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
[bison.git] / tests / calc.at
index 0054e86231f8b0f683fa7e863e9f2b13c6f224be..3b32194cfde34881670c6914992032f404fd31ef 100644 (file)
@@ -338,13 +338,13 @@ main (int argc, const char **argv)
 [  yydebug = 1;])])[
 ]AT_PUSH_IF([
   {
-    struct yypvars *ctx = yypvarsinit ();
+    struct yypstate *pstate = yypstate_init ();
     YYSTYPE my_lval;
     ]AT_LOCATION_IF([YYLTYPE my_lloc;])[
     do {
-      status = yypushparse (ctx, yylex (&my_lval]AT_LOCATION_IF([[, &my_lloc]])[), &my_lval]AT_LOCATION_IF([[, &my_lloc]])[);
+      status = yypush_parse (pstate, yylex (&my_lval]AT_LOCATION_IF([[, &my_lloc]])[), &my_lval]AT_LOCATION_IF([[, &my_lloc]])[);
     } while (status == YYPUSH_MORE);
-    free (ctx);
+    free (pstate);
   }],[
   status = yyparse (]AT_PARAM_IF([[&result, &count]])[);])[
   fclose (input);