# HG changeset patch # User Richard M. Stallman # Date 828895478 0 # Node ID 36e4b30437306e9911d95647afbc426e39b66c39 # Parent cb48d9a50ebca2db6b29ce1076878a7397ed031d (r_alloc_check): Don't check alignment of h->start. diff -r cb48d9a50ebc -r 36e4b3043730 src/ralloc.c --- a/src/ralloc.c Sun Apr 07 16:43:51 1996 +0000 +++ b/src/ralloc.c Sun Apr 07 16:44:38 1996 +0000 @@ -1164,7 +1164,11 @@ { 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);