X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=bfd%2Fcoffcode.h;h=12c84c4a047ff8a19742ebdca6405c447fac9d62;hb=04cb01fd5a3bc167ae26486bbc2bf941e96ad805;hp=311e8cd75b0627d3a17b5627fe82b905086fc42b;hpb=e82aa7944d2b00c54e9d3c1a47c5ed4a0e39393a;p=binutils-gdb.git diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 311e8cd75b0..12c84c4a047 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -32,12 +32,12 @@ SECTION Coff in all its varieties is implemented with a few common files and a number of implementation specific files. For - example, The 88k bcs coff format is implemented in the file - @file{coff-m88k.c}. This file @code{#include}s - @file{coff/m88k.h} which defines the external structure of the - coff format for the 88k, and @file{coff/internal.h} which - defines the internal structure. @file{coff-m88k.c} also - defines the relocations used by the 88k format + example, the i386 coff format is implemented in the file + @file{coff-i386.c}. This file @code{#include}s + @file{coff/i386.h} which defines the external structure of the + coff format for the i386, and @file{coff/internal.h} which + defines the internal structure. @file{coff-i386.c} also + defines the relocations used by the i386 coff format @xref{Relocations}. SUBSECTION @@ -2161,14 +2161,6 @@ coff_set_arch_mach_hook (bfd *abfd, void * filehdr) machine = bfd_mach_m68020; break; #endif -#ifdef MC88MAGIC - case MC88MAGIC: - case MC88DMAGIC: - case MC88OMAGIC: - arch = bfd_arch_m88k; - machine = 88100; - break; -#endif #ifdef Z80MAGIC case Z80MAGIC: arch = bfd_arch_z80; @@ -2279,12 +2271,6 @@ coff_set_arch_mach_hook (bfd *abfd, void * filehdr) break; #endif -#ifdef WE32KMAGIC - case WE32KMAGIC: - arch = bfd_arch_we32k; - break; -#endif - #ifdef SH_ARCH_MAGIC_BIG case SH_ARCH_MAGIC_BIG: case SH_ARCH_MAGIC_LITTLE: @@ -2831,12 +2817,6 @@ coff_set_flags (bfd * abfd, return TRUE; #endif -#ifdef MC88MAGIC - case bfd_arch_m88k: - *magicp = MC88OMAGIC; - return TRUE; -#endif - #ifdef SH_ARCH_MAGIC_BIG case bfd_arch_sh: #ifdef COFF_IMAGE_WITH_PE @@ -2866,12 +2846,6 @@ coff_set_flags (bfd * abfd, return TRUE; #endif -#ifdef WE32KMAGIC - case bfd_arch_we32k: - *magicp = WE32KMAGIC; - return TRUE; -#endif - #ifdef RS6000COFF_C case bfd_arch_rs6000: #ifndef PPCMAGIC @@ -3907,17 +3881,13 @@ coff_write_object_contents (bfd * abfd) internal_a.magic = TIC80_ARCH_MAGIC; #define __A_MAGIC_SET__ #endif /* TIC80 */ -#if M88 -#define __A_MAGIC_SET__ - internal_a.magic = PAGEMAGICBCS; -#endif /* M88 */ #if APOLLO_M68 #define __A_MAGIC_SET__ internal_a.magic = APOLLO_COFF_VERSION_NUMBER; #endif -#if defined(M68) || defined(WE32K) || defined(M68K) +#if defined(M68) || defined(M68K) #define __A_MAGIC_SET__ #if defined(LYNXOS) internal_a.magic = LYNXCOFFMAGIC; @@ -3932,7 +3902,7 @@ coff_write_object_contents (bfd * abfd) #endif #endif /* TARG_AUX */ #endif /* LYNXOS */ -#endif /* M68 || WE32K || M68K */ +#endif /* M68 || M68K */ #if defined(ARM) #define __A_MAGIC_SET__ @@ -5027,8 +4997,7 @@ SUBSUBSECTION o The reloc index is turned into a pointer to a howto structure, in a back end specific way. For instance, the 386 uses the @code{r_type} to directly produce an index - into a howto table vector; the 88k subtracts a number from the - @code{r_type} field and creates an addend field. + into a howto table vector. */ #ifndef CALC_ADDEND