Tue Jan 26 11:56:33 1993 Ian Lance Taylor (ian@cygnus.com)

* copy.c, nm.c, objdump.c, size.c: Use new bfd_is_com_section
	macro rather than checking for equality to bfd_com_section.
This commit is contained in:
Ian Lance Taylor 1993-01-26 19:57:59 +00:00
parent 8a045e502f
commit a625bbb1e8

View File

@ -185,7 +185,7 @@ filter_symbols (abfd, syms, symcount)
sym = from[src_count];
if ((flags & BSF_GLOBAL) /* Keep if external */
|| (sym->section == &bfd_und_section)
|| (sym->section == &bfd_com_section))
|| (bfd_is_com_section (sym->section)))
keep = 1;
else if ((flags & BSF_DEBUGGING) != 0) /* debugging symbol */
keep = strip_symbols != strip_debug;