diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 02:35:31 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 02:35:31 +0000 |
commit | 67c1ffbec916d2c18096f2a285d4f5812f20bd24 (patch) | |
tree | dfbb51279d89bfa089ec3a28a04bd665ad50f2cf /gas/config/tc-m68k.c | |
parent | 834ddcc491ace97284f1ec0edd55a863e9485e95 (diff) | |
download | binutils-gdb-67c1ffbec916d2c18096f2a285d4f5812f20bd24.tar.gz |
* config/tc-a29k.h: Fix comment typos.
* config/tc-arm.c: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-hppa.c: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-m32r.c: Likewise.
* config/tc-m68hc11.c: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m88k.c: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mips.c: Likewise.
* config/tc-mmix.c: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-pj.c: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-s390.c: Likewise.
* config/tc-sh64.c: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sparc.c: Likewise.
Diffstat (limited to 'gas/config/tc-m68k.c')
-rw-r--r-- | gas/config/tc-m68k.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index 5d53fa8515a..09a8396c8d2 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -672,7 +672,7 @@ make_pcrel_absolute(fixP, add_number) register unsigned char *opcode = fixP->fx_frag->fr_opcode; /* Rewrite the PC relative instructions to absolute address ones. - these are rumoured to be faster, and the apollo linker refuses + these are rumored to be faster, and the apollo linker refuses to deal with the PC relative relocations. */ if (opcode[0] == 0x60 && opcode[1] == 0xff) /* BRA -> JMP. */ { @@ -2400,7 +2400,7 @@ m68k_ip (instring) break; } - /* Figure out innner displacement stuff. */ + /* Figure out inner displacement stuff. */ if (opP->mode == POST || opP->mode == PRE) { if (cpu_of_arch (current_architecture) & cpu32) @@ -4583,7 +4583,7 @@ md_convert_frag_1 (fragP) fragP->fr_opcode[1] = 0x06; /* Branch offset = 6. */ /* JF: these used to be fr_opcode[2,3], but they may be in a - different frag, in which case refering to them is a no-no. + different frag, in which case referring to them is a no-no. Only fr_opcode[0,1] are guaranteed to work. */ *buffer_address++ = 0x4e; /* put in jmp long (0x4ef9) */ *buffer_address++ = (char) 0xf9; @@ -5443,7 +5443,7 @@ s_opt (ignore) } /* Skip ahead to a comma. This is used for OPT options which we do - not suppor tand which take arguments. */ + not support and which take arguments. */ static void skip_to_comma (arg, on) |