]> git.eshelyaron.com Git - emacs.git/commitdiff
(r_alloc_check): Don't check alignment of h->start.
authorRichard M. Stallman <rms@gnu.org>
Sun, 7 Apr 1996 16:44:38 +0000 (16:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 7 Apr 1996 16:44:38 +0000 (16:44 +0000)
src/ralloc.c

index dca5c2c6004255cbede84a7675efa7858a77082d..179fd314928efd29c7f1d186b269e0b6b7986396 100644 (file)
@@ -1164,7 +1164,11 @@ r_alloc_check ()
     {
       assert (h->prev == ph);
       assert ((POINTER) ROUNDUP (h->end) == h->end);
+#if 0 /* ??? The code in ralloc.c does not really try to ensure
+        the heap start has any sort of alignment.
+        Perhaps it should.  */
       assert ((POINTER) MEM_ROUNDUP (h->start) == h->start);
+#endif
       assert ((POINTER) MEM_ROUNDUP (h->bloc_start) == h->bloc_start);
       assert (h->start <= h->bloc_start && h->bloc_start <= h->end);