]> git.eshelyaron.com Git - emacs.git/commitdiff
Omit unnecessary USE_LAB_TAG #if
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 May 2020 16:05:12 +0000 (09:05 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 May 2020 16:51:11 +0000 (09:51 -0700)
* src/lisp.h: Omit unnecessary #if; the condition is always false now.

src/lisp.h

index f5d581a2f1d7dc9d163a2b1c5a831528bbd5d367..344269908825f10dea72a0269192578029ec0438 100644 (file)
@@ -251,12 +251,6 @@ DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)
 # define VALMASK (USE_LSB_TAG ? - (1 << GCTYPEBITS) : VAL_MAX)
 DEFINE_GDB_SYMBOL_END (VALMASK)
 
-#if !USE_LSB_TAG && !defined WIDE_EMACS_INT
-# error "USE_LSB_TAG not supported on this platform; please report this." \
-       "Try 'configure --with-wide-int' to work around the problem."
-error !;
-#endif
-
 /* Minimum alignment requirement for Lisp objects, imposed by the
    internal representation of tagged pointers.  It is 2**GCTYPEBITS if
    USE_LSB_TAG, 1 otherwise.  It must be a literal integer constant,