X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fparse.c;h=fd899303d6b45941b95e7655406ff670a5168202;hb=5e291412ff095a2016388eee8ac265e12d565119;hp=61d8a24386ff76ced149d5a38b68d5ae18255ba9;hpb=e365f2f7a9c66d307b48fee70778f4eaa84bdcc0;p=sbcl.git diff --git a/src/runtime/parse.c b/src/runtime/parse.c index 61d8a24..fd89930 100644 --- a/src/runtime/parse.c +++ b/src/runtime/parse.c @@ -15,8 +15,8 @@ #include #include -#include "runtime.h" #include "sbcl.h" +#include "runtime.h" #if defined(LISP_FEATURE_SB_LDB) @@ -258,7 +258,7 @@ static boolean lookup_symbol(char *name, lispobj *result) /* Search dynamic space. */ headerptr = (lispobj *)DYNAMIC_SPACE_START; -#if !defined(__i386__) +#if !(defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)) count = dynamic_space_free_pointer - (lispobj *)DYNAMIC_SPACE_START; @@ -295,7 +295,7 @@ parse_regnum(char *s) for (i = 0; i < NREGS ; i++) if (strcasecmp(s + 1, lisp_register_names[i]) == 0) -#ifdef __i386__ +#ifdef LISP_FEATURE_X86 return i*2; #else return i;