X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fglobals.c;h=70beb568343f019762c24f193ef7772c0e889282;hb=26b8ddda97fcfa2e2c0eae3bd2fdb19717c5fa40;hp=ae67e71ed713247eeb3a9d6258c15315d22c9969;hpb=d0583fb59b0d5e243c9141d649b82bac577f5aa9;p=sbcl.git diff --git a/src/runtime/globals.c b/src/runtime/globals.c index ae67e71..70beb56 100644 --- a/src/runtime/globals.c +++ b/src/runtime/globals.c @@ -13,10 +13,6 @@ * files for more information. */ -/* - * $Header$ - */ - #include #include "runtime.h" @@ -31,11 +27,6 @@ lispobj *current_control_frame_pointer; lispobj *current_binding_stack_pointer; #endif -lispobj *control_stack; -#ifdef __i386__ -lispobj *control_stack_end; -#endif - #ifndef ALLOCATION_POINTER lispobj *dynamic_space_free_pointer; #endif @@ -58,9 +49,9 @@ void globals_init(void) /* Initialize the current Lisp state. */ #ifndef __i386__ - current_control_stack_pointer = control_stack; + current_control_stack_pointer = (lispobj *)CONTROL_STACK_START; #else - current_control_stack_pointer = control_stack_end; + current_control_stack_pointer = (lispobj *)CONTROL_STACK_END; #endif current_control_frame_pointer = (lispobj *)0;