Commit 432aff66 by Martin v. Löwis Committed by Martin v. Löwis

* parse.y (extdefs): Call ggc_collect.

From-SVN: r32618
parent f281dd5a
2000-03-18 Martin v. Lwis <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.
......
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment