From afe3d09019946edd8476fa7e7fa965368e8b3904 Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Tue, 7 Sep 1999 10:10:01 +0000 Subject: Commit parts that were missing in Mark's last commit From-SVN: r29164 --- gcc/ggc-simple.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/ggc-simple.c') diff --git a/gcc/ggc-simple.c b/gcc/ggc-simple.c index c9181a9..60da127 100644 --- a/gcc/ggc-simple.c +++ b/gcc/ggc-simple.c @@ -133,7 +133,7 @@ ggc_alloc_rtvec (nelt) int nelt; { struct ggc_rtvec *v; - int size = sizeof (*v) + (nelt - 1) * sizeof (rtunion); + int size = sizeof (*v) + (nelt - 1) * sizeof (rtx); v = (struct ggc_rtvec *) xmalloc (size); bzero ((char *) v, size); @@ -195,7 +195,7 @@ ggc_alloc_string (contents, length) strings = s; #ifdef GGC_DUMP - fprintf(dump, "alloc string %p\n", &n->tree); + fprintf(dump, "alloc string %p\n", &s->string); #endif bytes_alloced_since_gc += size; -- cgit v1.1