Mercurial > emacs
changeset 14953:36e4b3043730
(r_alloc_check): Don't check alignment of h->start.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 07 Apr 1996 16:44:38 +0000 |
parents | cb48d9a50ebc |
children | a9102c34a5b6 |
files | src/ralloc.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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);