mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-20 01:33:03 +00:00
Use free rather than XFREE.
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
/* Allocate input grammar variables for bison,
|
/* Allocate input grammar variables for Bison.
|
||||||
|
|
||||||
Copyright (C) 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of Bison, the GNU Compiler Compiler.
|
This file is part of Bison, the GNU Compiler Compiler.
|
||||||
@@ -328,9 +329,9 @@ grammar_rules_never_reduced_report (const char *message)
|
|||||||
void
|
void
|
||||||
grammar_free (void)
|
grammar_free (void)
|
||||||
{
|
{
|
||||||
XFREE (ritem);
|
free (ritem);
|
||||||
free (rules);
|
free (rules);
|
||||||
XFREE (token_translations);
|
free (token_translations);
|
||||||
/* Free the symbol table data structure. */
|
/* Free the symbol table data structure. */
|
||||||
symbols_free ();
|
symbols_free ();
|
||||||
free_merger_functions ();
|
free_merger_functions ();
|
||||||
|
|||||||
Reference in New Issue
Block a user