diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2019-10-11 13:53:40 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2019-10-11 11:53:40 +0000 |
commit | e5207f1a6528877713109dc59b8db6c62a6eca28 (patch) | |
tree | 34f4f7fba3ec2a97f492c3aa15d13541aa5a3843 /gcc/ggc-none.c | |
parent | 9d99596e3289766c392466eebb8b2f2d2f4f1bc1 (diff) | |
download | gcc-e5207f1a6528877713109dc59b8db6c62a6eca28.zip gcc-e5207f1a6528877713109dc59b8db6c62a6eca28.tar.gz gcc-e5207f1a6528877713109dc59b8db6c62a6eca28.tar.bz2 |
ggc-page.c (release_pages): Output statistics when !quiet_flag.
* ggc-page.c (release_pages): Output statistics when !quiet_flag.
(ggc_collect): Dump later to not interfere with release_page dump.
(ggc_trim): New function.
* ggc-none.c (ggc_trim): New.
* ggc.h (ggc_trim): Declare.
* lto.c (lto_wpa_write_files): Call ggc_trim.
From-SVN: r276878
Diffstat (limited to 'gcc/ggc-none.c')
-rw-r--r-- | gcc/ggc-none.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ggc-none.c b/gcc/ggc-none.c index 6edec27..737429f 100644 --- a/gcc/ggc-none.c +++ b/gcc/ggc-none.c @@ -72,3 +72,8 @@ void ggc_grow (void) { } + +void +ggc_trim (void) +{ +} |