From: simonmar Date: Wed, 17 Oct 2001 15:19:24 +0000 (+0000) Subject: [project @ 2001-10-17 15:19:24 by simonmar] X-Git-Tag: Approximately_9120_patches~808 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7be8839eb9d008307cea7084bedbf407c84c90d8;p=ghc-hetmet.git [project @ 2001-10-17 15:19:24 by simonmar] Add missing CONSTR_NOCAF_STATIC case to the THUNK_SELECTOR evacuation code. Strange that we've never seen this before... --- diff --git a/ghc/rts/GC.c b/ghc/rts/GC.c index 713c579..1f42fc4 100644 --- a/ghc/rts/GC.c +++ b/ghc/rts/GC.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: GC.c,v 1.123 2001/10/01 10:52:36 simonmar Exp $ + * $Id: GC.c,v 1.124 2001/10/17 15:19:24 simonmar Exp $ * * (c) The GHC Team 1998-1999 * @@ -1603,6 +1603,7 @@ loop: case CONSTR_1_1: case CONSTR_0_2: case CONSTR_STATIC: + case CONSTR_NOCAF_STATIC: { StgWord offset = info->layout.selector_offset;