]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/ggc-page.c
Apply mechanical replacement (generated patch).
[thirdparty/gcc.git] / gcc / ggc-page.c
index b443d87ea57bf1b35fc11c7b296d1975ef993b96..b0d26256072c577743e7b7fc36bf31822a33233f 100644 (file)
@@ -2185,9 +2185,9 @@ ggc_collect (void)
      total allocations haven't expanded much since the last
      collection.  */
   float allocated_last_gc =
-    MAX (G.allocated_last_gc, (size_t)PARAM_VALUE (GGC_MIN_HEAPSIZE) * 1024);
+    MAX (G.allocated_last_gc, (size_t)param_ggc_min_heapsize * 1024);
 
-  float min_expand = allocated_last_gc * PARAM_VALUE (GGC_MIN_EXPAND) / 100;
+  float min_expand = allocated_last_gc * param_ggc_min_expand / 100;
   if (G.allocated < allocated_last_gc + min_expand && !ggc_force_collect)
     return;