From d381d2096a5386031a62d9826b9cd57901fce68d Mon Sep 17 00:00:00 2001 From: sewardj Date: Mon, 14 Feb 2000 10:58:05 +0000 Subject: [PATCH] [project @ 2000-02-14 10:58:05 by sewardj] initStorage: remove #ifdef COMPILER around call to mp_set_memory_functions. --- ghc/rts/Storage.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ghc/rts/Storage.c b/ghc/rts/Storage.c index c18bda6..3dd36f7 100644 --- a/ghc/rts/Storage.c +++ b/ghc/rts/Storage.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Storage.c,v 1.22 2000/01/12 15:15:18 simonmar Exp $ + * $Id: Storage.c,v 1.23 2000/02/14 10:58:05 sewardj Exp $ * * (c) The GHC Team, 1998-1999 * @@ -179,10 +179,8 @@ initStorage (void) alloc_blocks = 0; alloc_blocks_lim = RtsFlags.GcFlags.minAllocAreaSize; -#ifdef COMPILER /* Tell GNU multi-precision pkg about our custom alloc functions */ mp_set_memory_functions(stgAllocForGMP, stgReallocForGMP, stgDeallocForGMP); -#endif #ifdef SMP pthread_mutex_init(&sm_mutex, NULL); -- 1.7.10.4