diff options
| author | Stefan Monnier | 2003-11-05 15:27:44 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-11-05 15:27:44 +0000 |
| commit | 3d6d1a915cbf1cd0a839b0eb46377ac70669a8c6 (patch) | |
| tree | 0451bc21b08743e489def3ec19d555421f52a353 /src | |
| parent | 73a662efa92faabade68cfa495dbb1dde0dc07ec (diff) | |
| download | emacs-3d6d1a915cbf1cd0a839b0eb46377ac70669a8c6.tar.gz emacs-3d6d1a915cbf1cd0a839b0eb46377ac70669a8c6.zip | |
(VALBITS, XINT, XUINT): Remove.
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/amdx86-64.h | 8 | ||||
| -rw-r--r-- | src/m/ia64.h | 9 |
2 files changed, 0 insertions, 17 deletions
diff --git a/src/m/amdx86-64.h b/src/m/amdx86-64.h index 96ba0329631..fdb2b02fe70 100644 --- a/src/m/amdx86-64.h +++ b/src/m/amdx86-64.h | |||
| @@ -97,14 +97,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 97 | 97 | ||
| 98 | #define PNTR_COMPARISON_TYPE unsigned long | 98 | #define PNTR_COMPARISON_TYPE unsigned long |
| 99 | 99 | ||
| 100 | /* On the 64 bit architecture, we can use 60 bits for addresses */ | ||
| 101 | |||
| 102 | #define VALBITS 60 | ||
| 103 | |||
| 104 | /* Define XINT and XUINT so that they can take arguments of type int */ | ||
| 105 | #define XINT(a) (((long) (a) << (BITS_PER_LONG - VALBITS)) >> (BITS_PER_LONG - VALBITS)) | ||
| 106 | #define XUINT(a) ((long) (a) & VALMASK) | ||
| 107 | |||
| 108 | /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */ | 100 | /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */ |
| 109 | 101 | ||
| 110 | #define XPNTR(a) XUINT (a) | 102 | #define XPNTR(a) XUINT (a) |
diff --git a/src/m/ia64.h b/src/m/ia64.h index 3ccdb02bd24..7114382d513 100644 --- a/src/m/ia64.h +++ b/src/m/ia64.h | |||
| @@ -119,15 +119,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 119 | 119 | ||
| 120 | #define PNTR_COMPARISON_TYPE unsigned long | 120 | #define PNTR_COMPARISON_TYPE unsigned long |
| 121 | 121 | ||
| 122 | /* On the 64 bit architecture, we can use 60 bits for addresses */ | ||
| 123 | |||
| 124 | #define VALBITS 60 | ||
| 125 | |||
| 126 | /* Define XINT and XUINT so that they can take arguments of type int */ | ||
| 127 | |||
| 128 | #define XINT(a) (((long) (a) << (BITS_PER_LONG - VALBITS)) >> (BITS_PER_LONG - VALBITS)) | ||
| 129 | #define XUINT(a) ((long) (a) & VALMASK) | ||
| 130 | |||
| 131 | #ifndef NOT_C_CODE | 122 | #ifndef NOT_C_CODE |
| 132 | 123 | ||
| 133 | #ifdef REL_ALLOC | 124 | #ifdef REL_ALLOC |