diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-12-20 00:21:57 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-12-20 00:21:57 +0000 |
commit | 7b82c249fa95cb7c5500e8fe629f54f32de72ff8 (patch) | |
tree | d7b1f08c82474f2d1af73a1d50d574b5f7d19799 /bfd/sparclynx.c | |
parent | e30839fee3fa2b2ae067e6d85fa9ba41be09fc22 (diff) | |
download | gdb-7b82c249fa95cb7c5500e8fe629f54f32de72ff8.zip gdb-7b82c249fa95cb7c5500e8fe629f54f32de72ff8.tar.gz gdb-7b82c249fa95cb7c5500e8fe629f54f32de72ff8.tar.bz2 |
2000-12-19 Kazu Hirata <kazu@hxi.com>
* sco5-core.c: Fix formatting.
* section.c: Likewise.
* sparclinux.c: Likewise.
* sparclynx.c: Likewise.
* sparcnetbsd.c: Likewise.
* srec.c: Likewise.
* stabs.c: Likewise.
* stab-syms.c: Likewise.
* sunos.c: Likewise.
* syms.c: Likewise.
* sysdep.h: Likewise.
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 */ |