Mercurial > emacs
diff src/m/iris4d.h @ 30506:552c97239a77
(XUINT, XSET, XUNMARK) [_LP64]: Don't define.
| author | Dave Love <fx@gnu.org> |
|---|---|
| date | Thu, 27 Jul 2000 14:47:51 +0000 |
| parents | 27776b2b4393 |
| children | 4be8406ebef9 |
line wrap: on
line diff
--- a/src/m/iris4d.h Thu Jul 27 14:47:17 2000 +0000 +++ b/src/m/iris4d.h Thu Jul 27 14:47:51 2000 +0000 @@ -174,6 +174,7 @@ #undef STACK_DIRECTION #define STACK_DIRECTION -1 +#ifndef _LP64 /* The standard definitions of these macros would work ok, but these are faster because the constants are short. */ @@ -182,9 +183,8 @@ #define XSET(var, type, ptr) \ ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) -#define XMARKBIT(a) ((a) < 0) -#define XSETMARKBIT(a,b) ((a) = ((a) & ~MARKBIT) | ((b) ? MARKBIT : 0)) #define XUNMARK(a) ((a) = (((unsigned)(a) << BITS_PER_INT-GCTYPEBITS-VALBITS) >> BITS_PER_INT-GCTYPEBITS-VALBITS)) +#endif /* _LP64 */ #ifndef __GNUC__ /* Turn off some "helpful" error checks for type mismatches
