Mercurial > emacs
changeset 24806:a67730c51617
(get_section_info) [_ALPHA_]: Force as much bss data
as possible to be dumped, for safety.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Thu, 03 Jun 1999 21:00:10 +0000 |
parents | eb5e287ff675 |
children | c116d722d662 |
files | src/unexw32.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/unexw32.c Thu Jun 03 19:44:06 1999 +0000 +++ b/src/unexw32.c Thu Jun 03 21:00:10 1999 +0000 @@ -447,7 +447,11 @@ - bss_section_static->SizeOfRawData; /* Combine the bss sections into one if they overlap. */ +#ifdef _ALPHA_ + overlap = 1; /* force all bss data to be dumped */ +#else overlap = 0; +#endif if (bss_start < bss_start_static) { if (bss_start_static < bss_start + bss_size)