X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fparse.c;h=80546411a30e1c2bb9b58581a7d2c13876fe2d52;hb=dc71db379ab4162a45c393a2e828f619dae9fa32;hp=f6c636021d581fcddf8ebd44f1ab88447297e730;hpb=cf4cb9554515c59eddbde38d1cf236339c37f55f;p=sbcl.git diff --git a/src/runtime/parse.c b/src/runtime/parse.c index f6c6360..8054641 100644 --- a/src/runtime/parse.c +++ b/src/runtime/parse.c @@ -27,6 +27,7 @@ #include "interrupt.h" #include "lispregs.h" #include "monitor.h" +#include "validate.h" #include "arch.h" #include "search.h" #include "thread.h" @@ -258,7 +259,7 @@ static boolean lookup_symbol(char *name, lispobj *result) /* Search dynamic space. */ headerptr = (lispobj *)DYNAMIC_SPACE_START; -#if !defined(LISP_FEATURE_X86) +#if !(defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)) count = dynamic_space_free_pointer - (lispobj *)DYNAMIC_SPACE_START;