* src/alloc.c (mark_maybe_pointer): HAVE_MODULES may be undefined
This commit is contained in:
parent
bd3f53dd2e
commit
d2c7fda965
1 changed files with 7 additions and 1 deletions
|
@ -4607,7 +4607,13 @@ mark_maybe_pointer (void *p)
|
||||||
VALGRIND_MAKE_MEM_DEFINED (&p, sizeof (p));
|
VALGRIND_MAKE_MEM_DEFINED (&p, sizeof (p));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (sizeof (Lisp_Object) == sizeof (void *) || !HAVE_MODULES)
|
if (
|
||||||
|
#ifdef HAVE_MODULES
|
||||||
|
sizeof (Lisp_Object) == sizeof (void *)
|
||||||
|
#else
|
||||||
|
true
|
||||||
|
#endif
|
||||||
|
)
|
||||||
{
|
{
|
||||||
if (!maybe_lisp_pointer (p))
|
if (!maybe_lisp_pointer (p))
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue