summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rts/Updates.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/rts/Updates.h b/rts/Updates.h
index 2456f12b58..abca78817d 100644
--- a/rts/Updates.h
+++ b/rts/Updates.h
@@ -233,6 +233,10 @@ FILL_SLOP(StgClosure *p)
switch (inf->type) {
case BLACKHOLE:
case CAF_BLACKHOLE:
+ goto no_slop;
+ // we already filled in the slop when we overwrote the thunk
+ // with BLACKHOLE, and also an evacuated BLACKHOLE is only the
+ // size of an IND.
case THUNK_SELECTOR:
sz = sizeofW(StgSelector) - sizeofW(StgThunkHeader);
break;
@@ -249,6 +253,8 @@ FILL_SLOP(StgClosure *p)
for (i = 0; i < sz; i++) {
((StgThunk *)p)->payload[i] = 0;
}
+no_slop:
+ ;
}
#endif /* CMINUSMINUS */