1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(get_section_info) [_ALPHA_]: Force as much bss data

as possible to be dumped, for safety.
This commit is contained in:
Andrew Innes 1999-06-03 21:00:10 +00:00
parent f78b1e5e37
commit 972ee7e089

View File

@ -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)