From: Joshua Elsasser Date: Sun, 18 Nov 2012 22:38:16 +0000 (-0800) Subject: Unbreak ppc builds with 4k *backend-page-bytes* X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=4757c870c3b6fe959d5b0028cf3c96815438ec58;p=sbcl.git Unbreak ppc builds with 4k *backend-page-bytes* --- diff --git a/src/runtime/ppc-assem.S b/src/runtime/ppc-assem.S index a9a4ed0..51b6b32 100644 --- a/src/runtime/ppc-assem.S +++ b/src/runtime/ppc-assem.S @@ -284,6 +284,9 @@ x: #if BACKEND_PAGE_BYTES == 65536 # undef BACKEND_PAGE_BYTES # define BACKEND_PAGE_BYTES 65536 +#elif BACKEND_PAGE_BYTES == 4096 +# undef BACKEND_PAGE_BYTES +# define BACKEND_PAGE_BYTES 4096 #else # error BACKEND_PAGE_BYTES mismatch #endif