]> git.saurik.com Git - bison.git/commitdiff
Use free rather than XFREE.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 13 Dec 2002 07:57:20 +0000 (07:57 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 13 Dec 2002 07:57:20 +0000 (07:57 +0000)
src/gram.c

index a0e1dc5a5b4ea0f9fab07fb1434c3be1795d16ed..39045d76f800a47a857ffd38110f95a9f3f6c712 100644 (file)
@@ -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.
 
    This file is part of Bison, the GNU Compiler Compiler.
    Copyright (C) 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
@@ -328,9 +329,9 @@ grammar_rules_never_reduced_report (const char *message)
 void
 grammar_free (void)
 {
 void
 grammar_free (void)
 {
-  XFREE (ritem);
+  free (ritem);
   free (rules);
   free (rules);
-  XFREE (token_translations);
+  free (token_translations);
   /* Free the symbol table data structure.  */
   symbols_free ();
   free_merger_functions ();
   /* Free the symbol table data structure.  */
   symbols_free ();
   free_merger_functions ();