# HG changeset patch # User Andrew Innes # Date 928443610 0 # Node ID a67730c516174ae819bfaa929fa7cc8fa90bf250 # Parent eb5e287ff67545d97b261e8fc7ef4f2490e88f91 (get_section_info) [_ALPHA_]: Force as much bss data as possible to be dumped, for safety. diff -r eb5e287ff675 -r a67730c51617 src/unexw32.c --- 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)