From a551f1a135addb8e11b5c81bd3f25a3990483383 Mon Sep 17 00:00:00 2001 From: mthomas Date: Tue, 26 Nov 2002 07:02:04 +0000 Subject: [PATCH] [project @ 2002-11-26 07:02:04 by mthomas] mblockIsHeap has been removed so update mingw32 branch - SIMON CHECK PLS! --- ghc/rts/MBlock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/MBlock.c b/ghc/rts/MBlock.c index c87dd6a..9574407 100644 --- a/ghc/rts/MBlock.c +++ b/ghc/rts/MBlock.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: MBlock.c,v 1.40 2002/11/22 07:43:30 matthewc Exp $ + * $Id: MBlock.c,v 1.41 2002/11/26 07:02:04 mthomas Exp $ * * (c) The GHC Team 1998-1999 * @@ -312,7 +312,7 @@ getMBlocks(nat n) // fill in the table for (i = 0; i < n; i++) { - mblockIsHeap( ret + i * MBLOCK_SIZE ); + MARK_HEAP_ALLOCED ( ret + i * MBLOCK_SIZE ); } return ret; -- 1.7.10.4