mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
Undo XFREE change; we assume C89 compiler, not C89 library.
This commit is contained in:
@@ -116,6 +116,6 @@ derives_compute (void)
|
||||
void
|
||||
derives_free (void)
|
||||
{
|
||||
free (derives[0]);
|
||||
free (derives);
|
||||
XFREE (derives[0]);
|
||||
XFREE (derives);
|
||||
}
|
||||
|
||||
@@ -329,9 +329,9 @@ grammar_rules_never_reduced_report (const char *message)
|
||||
void
|
||||
grammar_free (void)
|
||||
{
|
||||
free (ritem);
|
||||
XFREE (ritem);
|
||||
free (rules);
|
||||
free (token_translations);
|
||||
XFREE (token_translations);
|
||||
/* Free the symbol table data structure. */
|
||||
symbols_free ();
|
||||
free_merger_functions ();
|
||||
|
||||
Reference in New Issue
Block a user