aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorEli Zaretskii2020-08-02 17:05:00 +0300
committerEli Zaretskii2020-08-02 17:05:00 +0300
commit418ea25bbf306c448516ea79c9eaf25b904e62e4 (patch)
treefb9e396e19e5bd6e879efe849dc62779b77d411b /src/alloc.c
parent99d1a66646b7450ad0be3e4471341b50fee7bdb5 (diff)
downloademacs-418ea25bbf306c448516ea79c9eaf25b904e62e4.tar.gz
emacs-418ea25bbf306c448516ea79c9eaf25b904e62e4.zip
Fix last change in alloc.c.
* src/alloc.c (mark_maybe_object) [WIDE_EMACS_INT]: Avoid compiler warning about 'overflow' being unused.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index be293cca54a..da11426075b 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -4649,6 +4649,8 @@ mark_maybe_object (Lisp_Object obj)
4649 significant bits as tag bits, the tag is small enough to not 4649 significant bits as tag bits, the tag is small enough to not
4650 overflow either. */ 4650 overflow either. */
4651 eassert (!overflow); 4651 eassert (!overflow);
4652#else
4653 (void) overflow;
4652#endif 4654#endif
4653 void *po = (char *) ((intptr_t) (char *) XLP (obj) + offset); 4655 void *po = (char *) ((intptr_t) (char *) XLP (obj) + offset);
4654 4656