* parse.y (extdefs): Call ggc_collect.

From-SVN: r32618
This commit is contained in:
Martin v. Löwis 2000-03-18 18:12:54 +00:00 committed by Martin v. Löwis
parent f281dd5a9d
commit 432aff6669
2 changed files with 6 additions and 2 deletions

View 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.

View 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: