aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2020-07-06 10:54:36 +0100
committerNick Clifton <nickc@redhat.com>2020-07-06 10:54:36 +0100
commitddc73fa9877b81a278139fd0e33c446aaceddf34 (patch)
tree1fa122f1c0c78ccc1495ebebedd65b23aa67876f /gas/config
parent17550be7dde6a99388a8ebef89828df892462ccd (diff)
downloadfsf-binutils-gdb-ddc73fa9877b81a278139fd0e33c446aaceddf34.zip
fsf-binutils-gdb-ddc73fa9877b81a278139fd0e33c446aaceddf34.tar.gz
fsf-binutils-gdb-ddc73fa9877b81a278139fd0e33c446aaceddf34.tar.bz2
Fix spelling mistakes in some of the binutils sub-directories.
PR 26204 gas * config/tc-arm.c: Fix spelling mistake. * config/tc-riscv.c: Likewise. * config/tc-z80.c: Likewise. * po/gas.pot: Regenerate. ld * lexsup.c: Fix spelling mistake. * po/ld.pot: Regenerate. opcodes * arc-dis.c: Fix spelling mistake. * po/opcodes.pot: Regenerate.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-arm.c2
-rw-r--r--gas/config/tc-riscv.c2
-rw-r--r--gas/config/tc-z80.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index a7e0ae7..5877847 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -22025,7 +22025,7 @@ vcx_handle_common_checks (unsigned num_args, enum neon_shape rs)
&& mark_feature_used (&armv8m_fp))
&& !mark_feature_used (&mve_ext),
_("vcx instructions with S or D registers require either MVE"
- " or Armv8-M floating point etension."));
+ " or Armv8-M floating point extension."));
}
static void
diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c
index 28be198..1d33aea 100644
--- a/gas/config/tc-riscv.c
+++ b/gas/config/tc-riscv.c
@@ -163,7 +163,7 @@ riscv_set_default_priv_spec (const char *s)
}
/* Still can not find the priv spec class. */
- as_bad (_("Unknown default privilege spec `%d.%d.%d' set by "
+ as_bad (_("Unknown default privilege spec `%d.%d.%d' set by "
"privilege attributes"), major, minor, revision);
return 0;
}
diff --git a/gas/config/tc-z80.c b/gas/config/tc-z80.c
index d9a8aa5..237425d 100644
--- a/gas/config/tc-z80.c
+++ b/gas/config/tc-z80.c
@@ -216,7 +216,7 @@ setup_march (const char *name, int *ok, int *err, int *mode)
break;
}
if (i >= ARRAY_SIZE (match_ext_table))
- as_fatal (_("Invalid EXTENTION is specified: %s"), name);
+ as_fatal (_("Invalid EXTENSION is specified: %s"), name);
}
}
@@ -409,8 +409,8 @@ Compatibility options:\n\
-local-prefix=TEXT\t treat labels prefixed by TEXT as local\n\
-colonless\t\t permit colonless labels\n\
-sdcc\t\t\t accept SDCC specific instruction syntax\n\
- -fp-s=FORMAT\t\t set single precission FP numbers format\n\
- -fp-d=FORMAT\t\t set double precission FP numbers format\n\
+ -fp-s=FORMAT\t\t set single precision FP numbers format\n\
+ -fp-d=FORMAT\t\t set double precision FP numbers format\n\
Where FORMAT one of:\n\
ieee754\t\t IEEE754 compatible (depends on directive)\n\
half\t\t\t IEEE754 half precision (16 bit)\n\
@@ -3887,7 +3887,7 @@ str_to_broken_float (bfd_boolean *signP, bfd_uint64_t *mantissaP, int *expP)
if (*p == '.')
{
p++;
- if (!exponent) /* If no precission overflow. */
+ if (!exponent) /* If no precision overflow. */
{
for (; ISDIGIT (*p); ++p, --exponent)
{