From 45272d161a3a8f92bb637346b3456b7a2ea32254 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 22 Jul 2002 00:08:23 +0000 Subject: * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET, ARRAY_MARK_FLAG): Deleted. (DATA_SEG_BITS): Define. --- src/m/gec63.h | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'src/m') diff --git a/src/m/gec63.h b/src/m/gec63.h index 0a5877bb09e..679a5a8a367 100644 --- a/src/m/gec63.h +++ b/src/m/gec63.h @@ -50,20 +50,6 @@ Boston, MA 02111-1307, USA. */ #define NO_REMAP -/* The rest of the file certainly needs updating for Emacs 19.29! */ +/* This needs verification! */ -/* Define sizes of portions of a Lisp_Object. */ -#define VALBITS 24 - -#define VALAMASK (((1<> VALBITS) & GCTYPEMASK)) -#define XSETTYPE(a, b) ((a) = ((a) & VALAMASK) + ((int)(b) << VALBITS)) - -#define XPNTR(a) ((a) & VALAMASK) - -#define XSET(var, type, ptr) \ - ((var) = ((int)(type) << VALBITS) + ((int) (ptr) & VALAMASK)) - -/* Move some garbage-collector flag bits to different bit positions. */ -#define ARRAY_MARK_FLAG (1 << 27) +#define DATA_SEG_BITS 0xF0000000L -- cgit v1.2.1