From: Ian Lance Taylor Date: Thu, 14 Dec 1995 18:46:54 +0000 (+0000) Subject: * ihex.c (ihex_set_arch_mach): Don't accept any architecture, just X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d709d3137ba26f7e93c3ca8a40d5c2464348a51;p=binutils-gdb.git * ihex.c (ihex_set_arch_mach): Don't accept any architecture, just a recognized one or bfd_arch_unknown. (ihex_get_symtab_upper_bound): Define as bfd_0l, to permit objcopy to succeed. (ihex_get_symtab): Likewise. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 04e677d9833..13b4ca4637c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,11 @@ +Thu Dec 14 13:45:37 1995 Ian Lance Taylor + + * ihex.c (ihex_set_arch_mach): Don't accept any architecture, just + a recognized one or bfd_arch_unknown. + (ihex_get_symtab_upper_bound): Define as bfd_0l, to permit objcopy + to succeed. + (ihex_get_symtab): Likewise. + Wed Dec 13 15:44:06 1995 Ian Lance Taylor * aoutx.h: Include . diff --git a/bfd/ihex.c b/bfd/ihex.c index 512bf475979..a8c6e2ebe14 100644 --- a/bfd/ihex.c +++ b/bfd/ihex.c @@ -899,7 +899,11 @@ ihex_set_arch_mach (abfd, arch, mach) enum bfd_architecture arch; unsigned long mach; { - bfd_default_set_arch_mach (abfd, arch, mach); + if (! bfd_default_set_arch_mach (abfd, arch, mach)) + { + if (arch != bfd_arch_unknown) + return false; + } return true; } @@ -922,8 +926,9 @@ ihex_sizeof_headers (abfd, exec) #define ihex_get_section_contents_in_window \ _bfd_generic_get_section_contents_in_window -#define ihex_get_symtab_upper_bound _bfd_nosymbols_get_symtab_upper_bound -#define ihex_get_symtab _bfd_nosymbols_get_symtab +#define ihex_get_symtab_upper_bound bfd_0l +#define ihex_get_symtab \ + ((long (*) PARAMS ((bfd *, asymbol **))) bfd_0l) #define ihex_print_symbol _bfd_nosymbols_print_symbol #define ihex_get_symbol_info _bfd_nosymbols_get_symbol_info #define ihex_bfd_is_local_label _bfd_nosymbols_bfd_is_local_label