diff options
Diffstat (limited to 'rts/Heap.c')
-rw-r--r-- | rts/Heap.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rts/Heap.c b/rts/Heap.c index 516f27ba6d..491324e706 100644 --- a/rts/Heap.c +++ b/rts/Heap.c @@ -241,6 +241,10 @@ StgWord collect_pointers(StgClosure *closure, StgClosure *ptrs[]) { break; } + case CONTINUATION: + // See the note in AP_STACK about the stack chunk. + break; + default: fprintf(stderr,"closurePtrs: Cannot handle type %s yet\n", closure_type_names[info->type]); |