aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-11-21 18:06:41 +0000
committerIan Lance Taylor <ian@airs.com>1995-11-21 18:06:41 +0000
commit7938b4cb15b41d54cb6029abc3146fab82dd6549 (patch)
tree69af1d21e3cd5bcb79ad12cb1bfa44dac28dbea4 /bfd
parent31a52a51453d7828dadb31c854041390ae1945b3 (diff)
downloadfsf-binutils-gdb-7938b4cb15b41d54cb6029abc3146fab82dd6549.zip
fsf-binutils-gdb-7938b4cb15b41d54cb6029abc3146fab82dd6549.tar.gz
fsf-binutils-gdb-7938b4cb15b41d54cb6029abc3146fab82dd6549.tar.bz2
* coffgen.c (coff_renumber_symbols): Sort common symbols with
global symbols.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog9
-rw-r--r--bfd/coffgen.c10
2 files changed, 15 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 4651e7e..d091524 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,12 @@
+Tue Nov 21 13:03:57 1995 Ian Lance Taylor <ian@cygnus.com>
+
+ * coffgen.c (coff_renumber_symbols): Sort common symbols with
+ global symbols.
+
+ * coffcode.h (coff_compute_section_file_positions): Only pad the
+ previous section to force file alignment when creating an
+ executable.
+
Mon Nov 20 14:54:09 1995 Ian Lance Taylor <ian@cygnus.com>
* coffcode.h (coff_compute_section_file_positions): If
diff --git a/bfd/coffgen.c b/bfd/coffgen.c
index 4bce970..cb9b2ba 100644
--- a/bfd/coffgen.c
+++ b/bfd/coffgen.c
@@ -634,16 +634,18 @@ coff_renumber_symbols (bfd_ptr, first_undef)
for (i = 0; i < symbol_count; i++)
if ((symbol_ptr_ptr[i]->flags & BSF_NOT_AT_END) != 0
|| (!bfd_is_und_section (symbol_ptr_ptr[i]->section)
+ && !bfd_is_com_section (symbol_ptr_ptr[i]->section)
&& ((symbol_ptr_ptr[i]->flags & (BSF_GLOBAL | BSF_FUNCTION))
!= BSF_GLOBAL)))
*newsyms++ = symbol_ptr_ptr[i];
for (i = 0; i < symbol_count; i++)
if (!bfd_is_und_section (symbol_ptr_ptr[i]->section)
- && ((symbol_ptr_ptr[i]->flags & (BSF_GLOBAL
- | BSF_NOT_AT_END
- | BSF_FUNCTION))
- == BSF_GLOBAL))
+ && (bfd_is_com_section (symbol_ptr_ptr[i]->section)
+ || ((symbol_ptr_ptr[i]->flags & (BSF_GLOBAL
+ | BSF_NOT_AT_END
+ | BSF_FUNCTION))
+ == BSF_GLOBAL)))
*newsyms++ = symbol_ptr_ptr[i];
*first_undef = newsyms - bfd_ptr->outsymbols;