From 59940493f000b3542a93d71e925d37a3f61b2f1a Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 30 Jul 2003 10:38:42 +0000 Subject: [PATCH] [project @ 2003-07-30 10:38:42 by simonmar] TEXT_BEFORE_HEAP is not used any more. --- ghc/rts/MBlock.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ghc/rts/MBlock.h b/ghc/rts/MBlock.h index c369416..de5d0b4 100644 --- a/ghc/rts/MBlock.h +++ b/ghc/rts/MBlock.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: MBlock.h,v 1.16 2002/11/22 06:54:05 matthewc Exp $ + * $Id: MBlock.h,v 1.17 2003/07/30 10:38:42 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -70,11 +70,6 @@ extern StgWord8 mblock_map[]; # define MARK_HEAP_ALLOCED(p) ((MBLOCK_MAP_ENTRY(p) < MBLOCK_MAP_SIZE) \ && (mblock_map[MBLOCK_MAP_ENTRY(p)] = 1)) -#elif defined(TEXT_BEFORE_HEAP) -/* Fall back to old method - assume heap above HEAP_BASE */ -# define HEAP_ALLOCED(p) ((StgPtr)(p) >= (StgPtr)(HEAP_BASE)) -# define MARK_HEAP_ALLOCED(p) do {} while(0) - #else # error HEAP_ALLOCED not defined #endif -- 1.7.10.4