diff options
Diffstat (limited to 'bfd/sparclynx.c')
-rw-r--r-- | bfd/sparclynx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/sparclynx.c b/bfd/sparclynx.c index dbfcae5..92454dc 100644 --- a/bfd/sparclynx.c +++ b/bfd/sparclynx.c @@ -46,7 +46,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* This is needed to reject a NewsOS file, e.g. in gdb/testsuite/gdb.t10/crossload.exp. <kingdon@cygnus.com> I needed to add M_UNKNOWN to recognize a 68000 object, so this will - probably no longer reject a NewsOS object. <ian@cygnus.com>. */ + probably no longer reject a NewsOS object. <ian@cygnus.com>. */ #define MACHTYPE_OK(mtype) ((mtype) == M_UNKNOWN \ || (mtype) == M_68010 \ || (mtype) == M_68020 \ @@ -90,7 +90,7 @@ NAME(lynx,set_arch_mach) (abfd, machtype) case M_UNKNOWN: /* Some Sun3s make magic numbers without cpu types in them, so - we'll default to the 68000. */ + we'll default to the 68000. */ arch = bfd_arch_m68k; machine = bfd_mach_m68000; break; @@ -137,7 +137,7 @@ NAME(lynx,set_arch_mach) (abfd, machtype) } #define SET_ARCH_MACH(ABFD, EXEC) \ - NAME(lynx,set_arch_mach)(ABFD, N_MACHTYPE (EXEC)); \ + NAME(lynx,set_arch_mach) (ABFD, N_MACHTYPE (EXEC)); \ choose_reloc_size(ABFD); /* Determine the size of a relocation entry, based on the architecture */ |