From b1ca0cb3b10f9ca4a28090d0d6bc00a097509fca Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 4 Nov 1999 10:15:50 +0000 Subject: [PATCH] [project @ 1999-11-04 10:15:50 by simonmar] Fix call to StgRun --- ghc/rts/Profiling.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/Profiling.c b/ghc/rts/Profiling.c index e6b5734..bbe2551 100644 --- a/ghc/rts/Profiling.c +++ b/ghc/rts/Profiling.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Profiling.c,v 1.10 1999/11/02 15:05:59 simonmar Exp $ + * $Id: Profiling.c,v 1.11 1999/11/04 10:15:50 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -240,7 +240,7 @@ registerCostCentres ( void ) */ register_stack = (F_ *)allocate(REGISTER_STACK_SIZE / sizeof(W_)); - StgRun((StgFunPtr)stg_register); + StgRun((StgFunPtr)stg_register, &MainRegTable); } -- 1.7.10.4