Mercurial > emacs
changeset 55661:272f0851d05e
[USE_LSB_TAG]: Don't check heap location.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Tue, 18 May 2004 07:53:53 +0000 |
parents | 0c5adcb1dce9 |
children | 4cea1f00f7bb |
files | src/w32heap.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/w32heap.c Tue May 18 07:32:23 2004 +0000 +++ b/src/w32heap.c Tue May 18 07:53:53 2004 +0000 @@ -245,6 +245,7 @@ exit (1); } +#if defined (NO_UNION_TYPE) && !defined (USE_LSB_TAG) /* Ensure that the addresses don't use the upper tag bits since the Lisp type goes there. */ if (((unsigned long) data_region_base & ~VALMASK) != 0) @@ -252,7 +253,7 @@ printf ("Error: The heap was allocated in upper memory.\n"); exit (1); } - +#endif data_region_end = data_region_base; real_data_region_end = data_region_end; }