* parse.y (extdefs): Call ggc_collect.
authorMartin v. Löwis <loewis@informatik.hu-berlin.de>
Sat, 18 Mar 2000 18:12:54 +0000 (18:12 +0000)
committerMartin v. Löwis <loewis@gcc.gnu.org>
Sat, 18 Mar 2000 18:12:54 +0000 (18:12 +0000)
From-SVN: r32618

gcc/cp/ChangeLog
gcc/cp/parse.y

index 57d0d2fc476c72fbc44959e2b17348abbfb09336..df8ea2dceaf8c0db87a64877535dc4700be5d439 100644 (file)
@@ -1,3 +1,7 @@
+2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
+
+       * parse.y (extdefs): Call ggc_collect.
+
 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
 
        * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
index 645d7ee7b32d42c4473fd517777053e5197adf1e..ab6012fc1d4138827384d1dde1be254a2eb9420c 100644 (file)
@@ -441,9 +441,9 @@ program:
 extdefs:
                { $<ttype>$ = NULL_TREE; }
          lang_extdef
-               { $<ttype>$ = NULL_TREE; }
+               { $<ttype>$ = NULL_TREE; ggc_collect (); }
        | extdefs lang_extdef
-               { $<ttype>$ = NULL_TREE; }
+               { $<ttype>$ = NULL_TREE; ggc_collect (); }
        ;
 
 extdefs_opt: