# HG changeset patch # User Jason Rumney # Date 1084866833 0 # Node ID 272f0851d05e2044a39419abf17f0453b83b38d8 # Parent 0c5adcb1dce987c92310552e6aa944bfe3a2c38e [USE_LSB_TAG]: Don't check heap location. diff -r 0c5adcb1dce9 -r 272f0851d05e src/w32heap.c --- 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; }