aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog8
-rw-r--r--binutils/ChangeLog-20112
-rw-r--r--binutils/ChangeLog-20174
-rw-r--r--binutils/coffgrok.c6
-rw-r--r--binutils/doc/binutils.texi2
-rw-r--r--binutils/readelf.c2
-rw-r--r--binutils/testsuite/binutils-all/vax/objdump.exp2
7 files changed, 17 insertions, 9 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 199f89b..653d6b6 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,11 @@
+2021-01-01 Nicolas Boulenguez <nicolas@debian.org>
+
+ * coffgrok.c (do_type): Correct spelling of auxiliary in errors.
+ * doc/binutils.texi: Correct grammar.
+ * readelf.c (process_version_sections): Correct spelling of auxiliary
+ in warning.
+ * testsuite/binutils-all/vax/objdump.exp: Comment grammar fix.
+
2021-01-01 Alan Modra <amodra@gmail.com>
Update year range in copyright notice of all files.
diff --git a/binutils/ChangeLog-2011 b/binutils/ChangeLog-2011
index c92d0d3..f73fd1e 100644
--- a/binutils/ChangeLog-2011
+++ b/binutils/ChangeLog-2011
@@ -455,7 +455,7 @@
in the file.
(arm_process_unwind): Likewise.
(ia64_process_unwind): Likewise.
- Set the size of the unwind auxillary information to 0 if the data
+ Set the size of the unwind auxiliary information to 0 if the data
could not be read.
(load_specific_debug_section): Handle a failure to read in the
section.
diff --git a/binutils/ChangeLog-2017 b/binutils/ChangeLog-2017
index 714b20d..01a15e3 100644
--- a/binutils/ChangeLog-2017
+++ b/binutils/ChangeLog-2017
@@ -1126,7 +1126,7 @@
PR binutils/21437
* readelf.c (process_version_sections): Check for underflow when
- computing the start address of the auxillary version data.
+ computing the start address of the auxiliary version data.
2017-04-28 Nick Clifton <nickc@redhat.com>
@@ -1762,7 +1762,7 @@
2017-02-13 Nick Clifton <nickc@redhat.com>
PR binutils/21148
- * readelf.c (process_version_sections): Include size of auxillary
+ * readelf.c (process_version_sections): Include size of auxiliary
version information when checking for buffer overflow.
2017-02-13 Nick Clifton <nickc@redhat.com>
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c
index d40f0d9..7b8dcf6 100644
--- a/binutils/coffgrok.c
+++ b/binutils/coffgrok.c
@@ -424,7 +424,7 @@ do_type (unsigned int i)
if (sym->n_numaux)
{
if (aux == NULL)
- fatal (_("Aggregate definition needs auxillary information"));
+ fatal (_("Aggregate definition needs auxiliary information"));
if (aux->x_sym.x_tagndx.p)
{
@@ -474,7 +474,7 @@ do_type (unsigned int i)
break;
case T_ENUM:
if (aux == NULL)
- fatal (_("Enum definition needs auxillary information"));
+ fatal (_("Enum definition needs auxiliary information"));
if (aux->x_sym.x_tagndx.p)
{
unsigned int idx = INDEXOF (aux->x_sym.x_tagndx.p);
@@ -517,7 +517,7 @@ do_type (unsigned int i)
int els;
if (aux == NULL)
- fatal (_("Array definition needs auxillary information"));
+ fatal (_("Array definition needs auxiliary information"));
els = (dimind < DIMNUM
? aux->x_sym.x_fcnary.x_ary.x_dimen[dimind]
: 0);
diff --git a/binutils/doc/binutils.texi b/binutils/doc/binutils.texi
index 0410075..526efe4 100644
--- a/binutils/doc/binutils.texi
+++ b/binutils/doc/binutils.texi
@@ -2471,7 +2471,7 @@ hexadecimal using @option{hex}. By default, the short immediates are
printed using the decimal representation, while the long immediate
values are printed as hexadecimal.
-@option{cpu=...} allows to enforce a particular ISA when disassembling
+@option{cpu=...} allows one to enforce a particular ISA when disassembling
instructions, overriding the @option{-m} value or whatever is in the ELF file.
This might be useful to select ARC EM or HS ISA, because architecture is same
for those and disassembler relies on private ELF header data to decide if code
diff --git a/binutils/readelf.c b/binutils/readelf.c
index f6945d9..d6e7a7b 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -11451,7 +11451,7 @@ process_version_sections (Filedata * filedata)
}
if (j < ent.vn_cnt)
- warn (_("Missing Version Needs auxillary information\n"));
+ warn (_("Missing Version Needs auxiliary information\n"));
if (ent.vn_next < sizeof (*entry)
&& !(cnt == section->sh_info - 1 && ent.vn_next == 0))
diff --git a/binutils/testsuite/binutils-all/vax/objdump.exp b/binutils/testsuite/binutils-all/vax/objdump.exp
index bb2cb09..6a6c5c3 100644
--- a/binutils/testsuite/binutils-all/vax/objdump.exp
+++ b/binutils/testsuite/binutils-all/vax/objdump.exp
@@ -19,7 +19,7 @@
#
# This file was written by Jan-Benedict Glaw <jbglaw@lug-owl.de>. It's goal
# is to check the VAX-specific support of the -M entry:0xf00 switch, which
-# allows to force function entry masks at given addresses.
+# allows one to force function entry masks at given addresses.
#
if ![istarget vax*-*-*] then {