aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-s390.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-11-22 02:35:31 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-11-22 02:35:31 +0000
commit67c1ffbec916d2c18096f2a285d4f5812f20bd24 (patch)
treedfbb51279d89bfa089ec3a28a04bd665ad50f2cf /gas/config/tc-s390.c
parent834ddcc491ace97284f1ec0edd55a863e9485e95 (diff)
downloadgdb-67c1ffbec916d2c18096f2a285d4f5812f20bd24.zip
gdb-67c1ffbec916d2c18096f2a285d4f5812f20bd24.tar.gz
gdb-67c1ffbec916d2c18096f2a285d4f5812f20bd24.tar.bz2
* 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-s390.c')
-rw-r--r--gas/config/tc-s390.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c
index 61764ef..ef51bca 100644
--- a/gas/config/tc-s390.c
+++ b/gas/config/tc-s390.c
@@ -424,7 +424,7 @@ md_parse_option (c, arg)
break;
case 'A':
- /* Option -A is deprecated. Still available for compatability. */
+ /* Option -A is deprecated. Still available for compatibility. */
if (arg != NULL && strcmp (arg, "esa") == 0)
current_cpu = S390_OPCODE_G5;
else if (arg != NULL && strcmp (arg, "esame") == 0)
@@ -1357,7 +1357,7 @@ md_gather_operands (str, insn, opcode)
/* After a displacement a block in parentheses can start. */
if (*str != '(')
{
- /* Check if parethesed block can be skipped. If the next
+ /* Check if parenthesized block can be skipped. If the next
operand is neiter an optional operand nor a base register
then we have a syntax error. */
operand = s390_operands + *(++opindex_ptr);
@@ -1368,7 +1368,7 @@ md_gather_operands (str, insn, opcode)
while (!(operand->flags & S390_OPERAND_BASE))
operand = s390_operands + *(++opindex_ptr);
- /* If there is a next operand it must be seperated by a comma. */
+ /* If there is a next operand it must be separated by a comma. */
if (opindex_ptr[1] != '\0')
{
if (*str++ != ',')
@@ -1401,7 +1401,7 @@ md_gather_operands (str, insn, opcode)
if (*str++ != ')')
as_bad (_("syntax error; missing ')' after base register"));
skip_optional = 0;
- /* If there is a next operand it must be seperated by a comma. */
+ /* If there is a next operand it must be separated by a comma. */
if (opindex_ptr[1] != '\0')
{
if (*str++ != ',')
@@ -1420,7 +1420,7 @@ md_gather_operands (str, insn, opcode)
as_bad (_("syntax error; ')' not allowed here"));
str++;
}
- /* If there is a next operand it must be seperated by a comma. */
+ /* If there is a next operand it must be separated by a comma. */
if (opindex_ptr[1] != '\0')
{
if (*str++ != ',')