changeset 52999:be22200cb422

(VALBITS, XINT, XUINT): Remove.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 05 Nov 2003 15:27:44 +0000
parents 3d26cfe32fa7
children 8e568e954adf
files src/m/amdx86-64.h src/m/ia64.h
diffstat 2 files changed, 0 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/src/m/amdx86-64.h	Wed Nov 05 15:24:08 2003 +0000
+++ b/src/m/amdx86-64.h	Wed Nov 05 15:27:44 2003 +0000
@@ -97,14 +97,6 @@
 
 #define PNTR_COMPARISON_TYPE unsigned long
 
-/* On the 64 bit architecture, we can use 60 bits for addresses */
-
-#define VALBITS         60
-
-/* 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)
-
 /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */
 
 #define XPNTR(a) XUINT (a)
--- a/src/m/ia64.h	Wed Nov 05 15:24:08 2003 +0000
+++ b/src/m/ia64.h	Wed Nov 05 15:27:44 2003 +0000
@@ -119,15 +119,6 @@
 
 #define PNTR_COMPARISON_TYPE unsigned long
 
-/* On the 64 bit architecture, we can use 60 bits for addresses */
-
-#define VALBITS         60
-
-/* 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)
-
 #ifndef NOT_C_CODE
 
 #ifdef REL_ALLOC