import gdb-2000-01-10 snapshot

This commit is contained in:
Jason Molenda 2000-01-11 03:07:37 +00:00
parent 3b7c8b7414
commit 0d06e24ba7
29 changed files with 1163 additions and 721 deletions

View file

@ -645,9 +645,9 @@ coff_symfile_read (objfile, mainline)
from the section address, rather than as absolute addresses.
FIXME: We should use BFD to read the symbol table, and thus avoid
this problem. */
pe_file = !
( strncmp (bfd_get_target (objfile->obfd), "pe", 2)
| strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7));
pe_file =
strncmp (bfd_get_target (objfile->obfd), "pe", 2) == 0
|| strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7) == 0;
/* End of warning */