aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2020-05-27 09:05:12 -0700
committerPaul Eggert2020-05-27 09:51:11 -0700
commit22446569cd319403e6e5e19369439ec71c46150d (patch)
tree9fa3e0daaadfffcd6f425883de60f82c525a95e0 /src
parentc5cf630ecd467fdcac13928f7e240cfc98cedc7a (diff)
downloademacs-22446569cd319403e6e5e19369439ec71c46150d.tar.gz
emacs-22446569cd319403e6e5e19369439ec71c46150d.zip
Omit unnecessary USE_LAB_TAG #if
* src/lisp.h: Omit unnecessary #if; the condition is always false now.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lisp.h b/src/lisp.h
index f5d581a2f1d..34426990882 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -251,12 +251,6 @@ DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)
251# define VALMASK (USE_LSB_TAG ? - (1 << GCTYPEBITS) : VAL_MAX) 251# define VALMASK (USE_LSB_TAG ? - (1 << GCTYPEBITS) : VAL_MAX)
252DEFINE_GDB_SYMBOL_END (VALMASK) 252DEFINE_GDB_SYMBOL_END (VALMASK)
253 253
254#if !USE_LSB_TAG && !defined WIDE_EMACS_INT
255# error "USE_LSB_TAG not supported on this platform; please report this." \
256 "Try 'configure --with-wide-int' to work around the problem."
257error !;
258#endif
259
260/* Minimum alignment requirement for Lisp objects, imposed by the 254/* Minimum alignment requirement for Lisp objects, imposed by the
261 internal representation of tagged pointers. It is 2**GCTYPEBITS if 255 internal representation of tagged pointers. It is 2**GCTYPEBITS if
262 USE_LSB_TAG, 1 otherwise. It must be a literal integer constant, 256 USE_LSB_TAG, 1 otherwise. It must be a literal integer constant,