From 85b74fd854bdeb89f71d7dcee571a39960cbccdd Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 26 Aug 2003 12:12:49 +0000 Subject: [PATCH] [project @ 2003-08-26 12:12:49 by simonmar] Add missing case to eval_thunk_selector(). --- 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 cbb939e..f3a1610 100644 --- a/ghc/rts/GC.c +++ b/ghc/rts/GC.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: GC.c,v 1.158 2003/08/14 15:36:13 simonmar Exp $ + * $Id: GC.c,v 1.159 2003/08/26 12:12:49 simonmar Exp $ * * (c) The GHC Team 1998-2003 * @@ -2131,6 +2131,7 @@ selector_loop: } case AP: + case AP_STACK: case THUNK: case THUNK_1_0: case THUNK_0_1: -- 1.7.10.4