comparison src/lisp.h @ 11873:6ac51c0face8

(gdb_lisp_params): New enum type.
author Karl Heuer <kwzh@gnu.org>
date Mon, 22 May 1995 22:16:07 +0000
parents 1136a3614d79
children 3f93d95cf9a0
comparison
equal deleted inserted replaced
11872:a28bd38b2ff3 11873:6ac51c0face8
93 #endif 93 #endif
94 94
95 #ifndef GCTYPEBITS 95 #ifndef GCTYPEBITS
96 #define GCTYPEBITS 3 96 #define GCTYPEBITS 3
97 #endif 97 #endif
98
99 /* Make these values available in GDB, which sees enums but not macros. */
100
101 enum gdb_lisp_params
102 {
103 gdb_valbits = VALBITS,
104 gdb_gctypebits = GCTYPEBITS,
105 gdb_emacs_intbits = sizeof (EMACS_INT) * INTBITS / sizeof (int),
106 #ifdef DATA_SEG_BITS
107 gdb_data_seg_bits = DATA_SEG_BITS
108 #else
109 gdb_data_seg_bits = 0
110 #endif
111 };
98 112
99 #ifndef NO_UNION_TYPE 113 #ifndef NO_UNION_TYPE
100 114
101 #ifndef WORDS_BIG_ENDIAN 115 #ifndef WORDS_BIG_ENDIAN
102 116