From dcf930cadb1c8ba420ca44e1ea5bd628d95cc73d Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 13 Dec 2002 14:43:06 +0000 Subject: [PATCH] [project @ 2002-12-13 14:43:06 by simonmar] Fix bug in stack_frame_sizeW --- ghc/rts/Storage.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc/rts/Storage.h b/ghc/rts/Storage.h index f942428..70e7c2a 100644 --- a/ghc/rts/Storage.h +++ b/ghc/rts/Storage.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Storage.h,v 1.46 2002/12/11 15:36:54 simonmar Exp $ + * $Id: Storage.h,v 1.47 2002/12/13 14:43:06 simonmar Exp $ * * (c) The GHC Team, 1998-2002 * @@ -420,6 +420,7 @@ static inline StgWord stack_frame_sizeW( StgClosure *frame ) return sizeofW(StgRetFun) + ((StgRetFun *)frame)->size; case RET_BIG: + case RET_VEC_BIG: return 1 + info->i.layout.large_bitmap->size; case RET_BCO: -- 1.7.10.4