X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fparse.c;h=8a2d9e32352e5fb9b29b8a218d68ac2bda70e5dc;hb=1e9a538c32223df9132c1e7fb2b67a2129c40a8d;hp=61d8a24386ff76ced149d5a38b68d5ae18255ba9;hpb=e365f2f7a9c66d307b48fee70778f4eaa84bdcc0;p=sbcl.git diff --git a/src/runtime/parse.c b/src/runtime/parse.c index 61d8a24..8a2d9e3 100644 --- a/src/runtime/parse.c +++ b/src/runtime/parse.c @@ -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) 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;