projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99d1a66
)
Fix last change in alloc.c.
author
Eli Zaretskii
<eliz@gnu.org>
Sun, 2 Aug 2020 14:05:00 +0000
(17:05 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Sun, 2 Aug 2020 14:05:00 +0000
(17:05 +0300)
* src/alloc.c (mark_maybe_object) [WIDE_EMACS_INT]: Avoid compiler
warning about 'overflow' being unused.
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index be293cca54acaa96124245c09fcda0f3bc16ab25..da11426075bb3e0f180e082db2de602f1d4855d3 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-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);