From: simonmar Date: Thu, 4 Nov 1999 10:15:50 +0000 (+0000) Subject: [project @ 1999-11-04 10:15:50 by simonmar] X-Git-Tag: Approximately_9120_patches~5602 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b1ca0cb3b10f9ca4a28090d0d6bc00a097509fca;p=ghc-hetmet.git [project @ 1999-11-04 10:15:50 by simonmar] Fix call to StgRun --- 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); }