diff options
| author | Andrew Innes | 1999-06-03 21:00:10 +0000 |
|---|---|---|
| committer | Andrew Innes | 1999-06-03 21:00:10 +0000 |
| commit | 972ee7e0896d60dadf5058a3d3a669ed3b688d91 (patch) | |
| tree | a2f9e0a58d9022f4b48148964cabde0485fb0986 /src | |
| parent | f78b1e5e375f83d8942252e7c51c1591489d5e4d (diff) | |
| download | emacs-972ee7e0896d60dadf5058a3d3a669ed3b688d91.tar.gz emacs-972ee7e0896d60dadf5058a3d3a669ed3b688d91.zip | |
(get_section_info) [_ALPHA_]: Force as much bss data
as possible to be dumped, for safety.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexw32.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/unexw32.c b/src/unexw32.c index 2aa2a529329..0d150cf34db 100644 --- a/src/unexw32.c +++ b/src/unexw32.c | |||
| @@ -447,7 +447,11 @@ get_section_info (file_data *p_infile) | |||
| 447 | - bss_section_static->SizeOfRawData; | 447 | - bss_section_static->SizeOfRawData; |
| 448 | 448 | ||
| 449 | /* Combine the bss sections into one if they overlap. */ | 449 | /* Combine the bss sections into one if they overlap. */ |
| 450 | #ifdef _ALPHA_ | ||
| 451 | overlap = 1; /* force all bss data to be dumped */ | ||
| 452 | #else | ||
| 450 | overlap = 0; | 453 | overlap = 0; |
| 454 | #endif | ||
| 451 | if (bss_start < bss_start_static) | 455 | if (bss_start < bss_start_static) |
| 452 | { | 456 | { |
| 453 | if (bss_start_static < bss_start + bss_size) | 457 | if (bss_start_static < bss_start + bss_size) |