From: Martin v. Löwis Date: Sat, 18 Mar 2000 18:12:54 +0000 (+0000) Subject: * parse.y (extdefs): Call ggc_collect. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=432aff6669f209734a2777df83629b5936321167;p=gcc.git * parse.y (extdefs): Call ggc_collect. From-SVN: r32618 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 57d0d2fc476..df8ea2dceaf 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2000-03-18 Martin v. Löwis + + * parse.y (extdefs): Call ggc_collect. + 2000-03-18 Nathan Sidwell * class.c (build_base_field): Use TYPE_ALIGN to examine a type. diff --git a/gcc/cp/parse.y b/gcc/cp/parse.y index 645d7ee7b32..ab6012fc1d4 100644 --- a/gcc/cp/parse.y +++ b/gcc/cp/parse.y @@ -441,9 +441,9 @@ program: extdefs: { $$ = NULL_TREE; } lang_extdef - { $$ = NULL_TREE; } + { $$ = NULL_TREE; ggc_collect (); } | extdefs lang_extdef - { $$ = NULL_TREE; } + { $$ = NULL_TREE; ggc_collect (); } ; extdefs_opt: