From: sewardj Date: Tue, 2 Oct 2001 15:27:15 +0000 (+0000) Subject: [project @ 2001-10-02 15:27:15 by sewardj] X-Git-Tag: Approximately_9120_patches~875 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=679364ed0d1a2a80ee9a14995a5339d6b7e5be3e;p=ghc-hetmet.git [project @ 2001-10-02 15:27:15 by sewardj] Fix spurious sp increment in RET_{VEC_}_SMALL printing code. MERGE TO STABLE --- diff --git a/ghc/rts/Printer.c b/ghc/rts/Printer.c index e64154d..d977a5c 100644 --- a/ghc/rts/Printer.c +++ b/ghc/rts/Printer.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Printer.c,v 1.46 2001/08/21 10:12:02 sewardj Exp $ + * $Id: Printer.c,v 1.47 2001/10/02 15:27:15 sewardj Exp $ * * (c) The GHC Team, 1994-2000. * @@ -462,7 +462,7 @@ void printStackChunk( StgPtr sp, StgPtr spBottom ) printPtr((P_)*sp); fprintf(stderr,"\n"); } else { - fprintf(stderr,"Word# %ld\n", *sp++); + fprintf(stderr,"Word# %ld\n", *sp); } sp++; bitmap = bitmap >> 1;