diff options
| author | Jason Rumney | 2004-05-18 07:53:53 +0000 |
|---|---|---|
| committer | Jason Rumney | 2004-05-18 07:53:53 +0000 |
| commit | 3ae12c8dc696b23e0434a9495657bc6ec8225716 (patch) | |
| tree | cd93cf1d4c0e8d4d8dd49bf3f1199c0cd7c06427 /src | |
| parent | 653bd0f660830e4a76ab95c4f4e98fa7cf250abd (diff) | |
| download | emacs-3ae12c8dc696b23e0434a9495657bc6ec8225716.tar.gz emacs-3ae12c8dc696b23e0434a9495657bc6ec8225716.zip | |
[USE_LSB_TAG]: Don't check heap location.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32heap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c index b40db430ea9..d947842474f 100644 --- a/src/w32heap.c +++ b/src/w32heap.c | |||
| @@ -245,6 +245,7 @@ init_heap () | |||
| 245 | exit (1); | 245 | exit (1); |
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | #if defined (NO_UNION_TYPE) && !defined (USE_LSB_TAG) | ||
| 248 | /* Ensure that the addresses don't use the upper tag bits since | 249 | /* Ensure that the addresses don't use the upper tag bits since |
| 249 | the Lisp type goes there. */ | 250 | the Lisp type goes there. */ |
| 250 | if (((unsigned long) data_region_base & ~VALMASK) != 0) | 251 | if (((unsigned long) data_region_base & ~VALMASK) != 0) |
| @@ -252,7 +253,7 @@ init_heap () | |||
| 252 | printf ("Error: The heap was allocated in upper memory.\n"); | 253 | printf ("Error: The heap was allocated in upper memory.\n"); |
| 253 | exit (1); | 254 | exit (1); |
| 254 | } | 255 | } |
| 255 | 256 | #endif | |
| 256 | data_region_end = data_region_base; | 257 | data_region_end = data_region_base; |
| 257 | real_data_region_end = data_region_end; | 258 | real_data_region_end = data_region_end; |
| 258 | } | 259 | } |