diff options
-rw-r--r-- | rts/RetainerProfile.c | 3 | ||||
-rw-r--r-- | rts/StgMiscClosures.cmm | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/rts/RetainerProfile.c b/rts/RetainerProfile.c index d67eeb4834..23f46e0714 100644 --- a/rts/RetainerProfile.c +++ b/rts/RetainerProfile.c @@ -337,6 +337,7 @@ init_srt_fun( stackPos *info, const StgFunInfoTable *infoTable ) static INLINE void init_srt_thunk( stackPos *info, const StgThunkInfoTable *infoTable ) { + info->type = posTypeSRT; if (infoTable->i.srt) { info->next.srt.srt = (StgClosure*)GET_SRT(infoTable); } else { @@ -489,8 +490,6 @@ push( StgClosure *c, retainer c_child_r, StgClosure **first_child ) // layout.payload.ptrs, SRT case FUN_STATIC: - ASSERT(get_itbl(c)->srt != 0); - /* fallthrough */ case FUN: // *c is a heap object. case FUN_2_0: init_ptrs(&se.info, get_itbl(c)->layout.payload.ptrs, (StgPtr)c->payload); diff --git a/rts/StgMiscClosures.cmm b/rts/StgMiscClosures.cmm index e645442033..36fd66901b 100644 --- a/rts/StgMiscClosures.cmm +++ b/rts/StgMiscClosures.cmm @@ -211,7 +211,7 @@ INFO_TABLE_RET( stg_apply_interp, RET_BCO ) Entry code for a BCO ------------------------------------------------------------------------- */ -INFO_TABLE_FUN( stg_BCO, 4, 0, BCO, "BCO", "BCO", ARG_BCO ) +INFO_TABLE_FUN( stg_BCO, 3, 0, BCO, "BCO", "BCO", ARG_BCO ) /* explicit stack */ { /* entering a BCO means "apply it", same as a function */ |