From 432aff6669f209734a2777df83629b5936321167 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 18 Mar 2000 18:12:54 +0000 Subject: [PATCH] * parse.y (extdefs): Call ggc_collect. From-SVN: r32618 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/parse.y | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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: -- 2.30.2