From: Simon Marlow Date: Wed, 2 Dec 2009 13:40:20 +0000 (+0000) Subject: sanity check the top stack frame, not the whole stack X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=35beb255958545f401f4f2229953a6355d09476c sanity check the top stack frame, not the whole stack --- diff --git a/rts/Interpreter.c b/rts/Interpreter.c index 5197510..b95d5a9 100644 --- a/rts/Interpreter.c +++ b/rts/Interpreter.c @@ -269,7 +269,8 @@ eval_obj: debugBelch("\n\n"); ); - IF_DEBUG(sanity,checkStackChunk(Sp, cap->r.rCurrentTSO->stack+cap->r.rCurrentTSO->stack_size)); +// IF_DEBUG(sanity,checkStackChunk(Sp, cap->r.rCurrentTSO->stack+cap->r.rCurrentTSO->stack_size)); + IF_DEBUG(sanity,checkStackFrame(Sp)); switch ( get_itbl(obj)->type ) {