diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-07-06 21:09:31 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-07-06 21:09:31 +0000 |
commit | 4698665ff54dc0dde4345e52025a67f06f233018 (patch) | |
tree | e85bcaf142ccf7be021149dfb7a06e05fab679fa /src/m/amdx86-64.h | |
parent | c74abe0afd969423d0be6b2477b146fbd8e27b18 (diff) | |
download | emacs-4698665ff54dc0dde4345e52025a67f06f233018.tar.gz |
(MARKBIT): Remove definition since lisp.h does not compare
MARKBIT and ARRAY_MARK_FLAG any more.
Diffstat (limited to 'src/m/amdx86-64.h')
-rw-r--r-- | src/m/amdx86-64.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/m/amdx86-64.h b/src/m/amdx86-64.h index c7cfbf8b847..8043ca0178b 100644 --- a/src/m/amdx86-64.h +++ b/src/m/amdx86-64.h @@ -1,5 +1,5 @@ /* machine description file for AMD x86-64. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -101,11 +101,6 @@ Boston, MA 02111-1307, USA. */ #define VALBITS 60 -/* This definition of MARKBIT is necessary because of the comparison of - ARRAY_MARK_FLAG and MARKBIT in an #if in lisp.h, which cpp doesn't like. */ - -#define MARKBIT 0x8000000000000000L - /* Define XINT and XUINT so that they can take arguments of type int */ #define XINT(a) (((long) (a) << (BITS_PER_LONG - VALBITS)) >> (BITS_PER_LONG - VALBITS)) #define XUINT(a) ((long) (a) & VALMASK) |