X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fcheneygc.c;h=f557521c8c1371b21bb1db8ef779a8c11c9436fe;hb=619ee68faffc3990c5108611762ef54bf8cbbd1e;hp=894fc5c608e74a04763bdd8495fce3a6d4574558;hpb=9f10bc102adce15a820027777a03e49a7b7623da;p=sbcl.git diff --git a/src/runtime/cheneygc.c b/src/runtime/cheneygc.c index 894fc5c..f557521 100644 --- a/src/runtime/cheneygc.c +++ b/src/runtime/cheneygc.c @@ -568,7 +568,13 @@ gc_init(void) void gc_initialize_pointers(void) { - current_dynamic_space = DYNAMIC_0_SPACE_START; + /* FIXME: We do nothing here. We (briefly) misguidedly attempted + to set current_dynamic_space to DYNAMIC_0_SPACE_START here, + forgetting that (a) actually it could be the other and (b) it's + set in coreparse.c anyway. There's a FIXME note left here to + note that current_dynamic_space is a violation of OAOO: we can + tell which dynamic space we're currently in by looking at + dynamic_space_free_pointer. -- CSR, 2002-08-09 */ }