From f2c70fe37a00a0773fed77bdd7175fc131ffb18d Mon Sep 17 00:00:00 2001 From: Richard Brooksby Date: Fri, 31 Jan 2014 13:50:16 +0000 Subject: [PATCH] Clarifying a comment. Copied from Perforce Change: 184262 ServerID: perforce.ravenbrook.com --- mps/code/poolmv2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mps/code/poolmv2.c b/mps/code/poolmv2.c index 53237d5861f..315215473be 100644 --- a/mps/code/poolmv2.c +++ b/mps/code/poolmv2.c @@ -832,8 +832,8 @@ static Res MVTInsert(MVT mvt, Addr base, Addr limit) if (RangeSize(&newRange) >= mvt->reuseSize) { /* The new range is big enough that it might have been coalesced - * with ranges on the ABQ, so ensure that they are removed before - * reserving the new range. + * with ranges on the ABQ, so ensure that the corresponding ranges + * are coalesced on the ABQ. */ ABQIterate(MVTABQ(mvt), MVTDeleteOverlapping, &newRange, 0); MVTReserve(mvt, &newRange);