From: Andrew Innes Date: Thu, 3 Jun 1999 21:00:10 +0000 (+0000) Subject: (get_section_info) [_ALPHA_]: Force as much bss data X-Git-Tag: emacs-20.4~143 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=972ee7e0896d60dadf5058a3d3a669ed3b688d91;p=emacs.git (get_section_info) [_ALPHA_]: Force as much bss data as possible to be dumped, for safety. --- 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) - 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)