summaryrefslogtreecommitdiff
path: root/gcc/ggc-none.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2014-05-25 02:58:54 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2014-05-25 02:58:54 +0000
commit4f78e0a8f9c3a58c3c5566c6b1a0e5acceac8924 (patch)
tree41a5b3a40274b4ea228e9edf919dd2dfac1e4e80 /gcc/ggc-none.c
parent7aeffc5f48192d1682ffeee467b1503038c4a545 (diff)
downloadgcc-4f78e0a8f9c3a58c3c5566c6b1a0e5acceac8924.tar.gz
* ggc.h (ggc_grow): New function.
* ggc-none.c (ggc_grow): New function. * ggc-page.c (ggc_grow): Likewise. * lto.c (read_cgraph_and_symbols): Grow ggc memory after streaming. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210908 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc-none.c')
-rw-r--r--gcc/ggc-none.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ggc-none.c b/gcc/ggc-none.c
index 97d356657f0..29a7b2f767a 100644
--- a/gcc/ggc-none.c
+++ b/gcc/ggc-none.c
@@ -67,3 +67,8 @@ ggc_free (void *p)
{
free (p);
}
+
+void
+ggc_grow (void)
+{
+}