diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-12 16:23:25 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-12 16:23:25 +0000 |
commit | ae115e5114deb0326333c80f7af9e689b2e7d01f (patch) | |
tree | 2c592646411768ec9a95b17070181cb5b068cf9c /bfd/libecoff.h | |
parent | d8586e35caeb6ffea7058bce844023ec19140cc7 (diff) | |
download | gdb-ae115e5114deb0326333c80f7af9e689b2e7d01f.zip gdb-ae115e5114deb0326333c80f7af9e689b2e7d01f.tar.gz gdb-ae115e5114deb0326333c80f7af9e689b2e7d01f.tar.bz2 |
Extensive minor changes to avoid various gcc warnings. Also:
* Makefile.in (BFD32_BACKENDS): Remove coff-arm.o.
* archures.c (bfd_arch_info_type): Change mach field from long to
unsigned long.
(bfd_lookup_arch): Change machine parameter from long to unsigned
long.
Diffstat (limited to 'bfd/libecoff.h')
-rw-r--r-- | bfd/libecoff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/libecoff.h b/bfd/libecoff.h index 8dbd3d8..d16e3fa 100644 --- a/bfd/libecoff.h +++ b/bfd/libecoff.h @@ -94,7 +94,7 @@ typedef struct ecoff_tdata /* The maximum size of objects to optimize using gp. This is typically set by the -G option to the compiler, assembler or linker. */ - int gp_size; + unsigned int gp_size; /* The register masks. When linking, all the masks found in the input files are combined into the masks of the output file. @@ -253,7 +253,7 @@ extern boolean _bfd_ecoff_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *)); _bfd_generic_bfd_copy_private_symbol_data #define _bfd_ecoff_bfd_print_private_bfd_data \ - _bfd_generic_bfd_pritn_private_bfd_data + _bfd_generic_bfd_print_private_bfd_data #define _bfd_ecoff_bfd_merge_private_bfd_data \ _bfd_generic_bfd_merge_private_bfd_data |