From: Stefan Monnier Date: Wed, 21 Jan 2004 19:32:49 +0000 (+0000) Subject: [USE_LSB_TAG && !DECL_ALIGN]: Signal an error. X-Git-Tag: ttn-vms-21-2-B4~7857 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1b35bdf447d1774f08b33845b4b43d3d5a3b1a37;p=emacs.git [USE_LSB_TAG && !DECL_ALIGN]: Signal an error. --- diff --git a/src/lisp.h b/src/lisp.h index cb332acaedb..917634525d7 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -294,18 +294,14 @@ enum pvec_type /* First, try and define DECL_ALIGN(type,var) which declares a static variable VAR of type TYPE with the added requirement that it be TYPEBITS-aligned. */ -#ifndef DECL_ALIGN +#if defined USE_LSB_TAG && !defined DECL_ALIGN /* What compiler directive should we use for non-gcc compilers? -stef */ -#if defined (__GNUC__) -#define DECL_ALIGN(type, var) \ +# if defined (__GNUC__) +# define DECL_ALIGN(type, var) \ type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var -#endif -#endif - -#ifndef DECL_ALIGN -/* Can't USE_LSB_TAG if we can't enforce alignment of statically allocated - objects like lisp_subr and the special buffers in buffer.c. */ -#undef USE_LSB_TAG +# else +# error "USE_LSB_TAG used without defining DECL_ALIGN" +# endif #endif #ifndef USE_LSB_TAG