* mark.c (GC_mark_from): If "descr" is less than size of word then
skip prefetching and PUSH_CONTENTS of the current entry (thus,
eliminate assertion violation in the prefetch loop) if SMALL_CONFIG is
not defined.
}
} else /* Small object with length descriptor */ {
mark_stack_top--;
+# ifndef SMALL_CONFIG
+ if (descr < sizeof(word))
+ continue;
+# endif
limit = current_p + (word)descr;
}
# ifdef ENABLE_TRACE