From 19cc0dd4ade36a02400c5d89f89efdd3145c0bfb Mon Sep 17 00:00:00 2001 From: Geoffrey Keating Date: Fri, 10 Jan 2003 22:32:00 +0000 Subject: [PATCH] ggc-page.c (ggc_collect): Avoid overflow computing min_expand. * ggc-page.c (ggc_collect): Avoid overflow computing min_expand. From-SVN: r61172 --- gcc/ChangeLog | 3 +++ gcc/ggc-page.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 29a0278666b..935a12c0d19 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2003-01-10 Geoffrey Keating + * ggc-page.c (ggc_collect): Avoid overflow computing + min_expand. + * Makefile.in (RANLIB_FOR_TARGET): Use RANLIB when native. (RANLIB_TEST_FOR_TARGET): Delete. Don't pass down to sub-makes. Remove calls. diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c index a150c5a88e6..4898f074ee1 100644 --- a/gcc/ggc-page.c +++ b/gcc/ggc-page.c @@ -1509,10 +1509,10 @@ ggc_collect () /* Avoid frequent unnecessary work by skipping collection if the total allocations haven't expanded much since the last collection. */ - size_t allocated_last_gc = + float allocated_last_gc = MAX (G.allocated_last_gc, (size_t)PARAM_VALUE (GGC_MIN_HEAPSIZE) * 1024); - size_t min_expand = allocated_last_gc * PARAM_VALUE (GGC_MIN_EXPAND) / 100; + float min_expand = allocated_last_gc * PARAM_VALUE (GGC_MIN_EXPAND) / 100; if (G.allocated < allocated_last_gc + min_expand) return; -- 2.30.2