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