From 7be8839eb9d008307cea7084bedbf407c84c90d8 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 17 Oct 2001 15:19:24 +0000 Subject: [PATCH] [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... --- ghc/rts/GC.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 1.7.10.4