diff options
author | Steve Chamberlain <steve@cygnus> | 1991-07-15 23:30:28 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-07-15 23:30:28 +0000 |
commit | 41f50af07b8622f62e08b219389a43111fcce33a (patch) | |
tree | 5574113db3cd2ca942719969cb89efe49567dc35 /bfd/coff-mips.c | |
parent | 36b9d39cf464e3511c08399cbce1da7e098fde69 (diff) | |
download | gdb-41f50af07b8622f62e08b219389a43111fcce33a.zip gdb-41f50af07b8622f62e08b219389a43111fcce33a.tar.gz gdb-41f50af07b8622f62e08b219389a43111fcce33a.tar.bz2 |
* aoutf1.h archive.c bfd.c coffcode.h core.c ecoff.c ieee.c
bfd.texinfo oasys.c opncls.c reloc.c srec.c: More documentation on
lint fixes.
* amdcoff.c bfd.texinfo Makefile.in : Folded in changes for amd
29k coff by David Wood (wood@lab.ultra.nyu.edu).
Diffstat (limited to 'bfd/coff-mips.c')
-rw-r--r-- | bfd/coff-mips.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bfd/coff-mips.c b/bfd/coff-mips.c index 4e16150..da5816e 100644 --- a/bfd/coff-mips.c +++ b/bfd/coff-mips.c @@ -25,16 +25,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sysdep.h> #define MIPS 1 -#if 0 - -#include <stdio.h> -#include <string.h> -#endif #include "bfd.h" #include "libbfd.h" -#include "intel-coff.h" +#include "ecoff.h" +#include "internalcoff.h" #include "libcoff.h" /* to allow easier abstraction-breaking */ #define BADMAG(x) ECOFFBADMAG(x) @@ -53,6 +49,7 @@ bfd_target ecoff_little_vec = (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* sect flags */ '/', /* ar_pad_char */ 15, /* ar_max_namelen */ + 3, /* minimum alignment power */ _do_getl64, _do_putl64, _do_getl32, _do_putl32, _do_getl16, _do_putl16, /* data */ _do_getl64, _do_putl64, _do_getl32, _do_putl32, _do_getl16, _do_putl16, /* hdrs */ @@ -77,6 +74,7 @@ bfd_target ecoff_big_vec = (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* sect flags */ ' ', /* ar_pad_char */ 16, /* ar_max_namelen */ + 3, /* minimum alignment power */ _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* data */ _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* hdrs */ {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ |