1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-10 09:43:26 -08:00

Fix last change in alloc.c.

* src/alloc.c (mark_maybe_object) [WIDE_EMACS_INT]: Avoid compiler
warning about 'overflow' being unused.
This commit is contained in:
Eli Zaretskii 2020-08-02 17:05:00 +03:00
parent 99d1a66646
commit 418ea25bbf

View file

@ -4649,6 +4649,8 @@ mark_maybe_object (Lisp_Object obj)
significant bits as tag bits, the tag is small enough to not
overflow either. */
eassert (!overflow);
#else
(void) overflow;
#endif
void *po = (char *) ((intptr_t) (char *) XLP (obj) + offset);