summaryrefslogtreecommitdiff
path: root/src/w32heap.c
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2004-05-18 07:53:53 +0000
committerJason Rumney <jasonr@gnu.org>2004-05-18 07:53:53 +0000
commit3ae12c8dc696b23e0434a9495657bc6ec8225716 (patch)
treecd93cf1d4c0e8d4d8dd49bf3f1199c0cd7c06427 /src/w32heap.c
parent653bd0f660830e4a76ab95c4f4e98fa7cf250abd (diff)
[USE_LSB_TAG]: Don't check heap location.
Diffstat (limited to 'src/w32heap.c')
-rw-r--r--src/w32heap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c
index b40db430ea..d947842474 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -245,6 +245,7 @@ init_heap ()
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 @@ init_heap ()
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;
}