diff options
author | Alan Modra <amodra@gmail.com> | 2021-01-01 14:21:52 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-01-01 14:36:35 +1030 |
commit | f9a6a8f09dc2310d5f4a482a2e7ffc1be3984cd7 (patch) | |
tree | 30d8c1679c101f90677c695ce64e8473f13e95e7 /include | |
parent | 250d07de5cf6efc81ed934c25292beb63c7e3129 (diff) | |
download | gdb-f9a6a8f09dc2310d5f4a482a2e7ffc1be3984cd7.zip gdb-f9a6a8f09dc2310d5f4a482a2e7ffc1be3984cd7.tar.gz gdb-f9a6a8f09dc2310d5f4a482a2e7ffc1be3984cd7.tar.bz2 |
PR27116, Spelling errors found by Debian style checker
PR 27116
bfd/
* xcofflink.c: Correct spelling in comments.
binutils/
* 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.
config/
* override.m4: Correct comment grammar.
gas/
* config/tc-i386.c: Correct comment spelling.
* config/tc-riscv.c: Likewise.
* config/tc-s390.c: Correct comment grammar.
* doc/c-i386.texi: Correct spelling.
* doc/c-s390.texi: Correct grammar.
gold/
* tilegx.cc: Correct comment spelling.
gprof/
* README: Correct grammar.
* gprof.texi: Likewise.
include/
* coff/internal.h: Correct comment spelling.
* coff/sym.h: Likewise.
* opcode/aarch64.h: Likewise.
ld/
* configure.tgt: Correct comment grammar.
* emultempl/m68hc1xelf.em: Likewise.
* ld.texi: Correct grammar.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/coff/internal.h | 2 | ||||
-rw-r--r-- | include/coff/sym.h | 4 | ||||
-rw-r--r-- | include/opcode/aarch64.h | 2 |
4 files changed, 10 insertions, 4 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 199f89b..048ba61 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +2021-01-01 Nicolas Boulenguez <nicolas@debian.org> + + * coff/internal.h: Correct comment spelling. + * coff/sym.h: Likewise. + * opcode/aarch64.h: Likewise. + 2021-01-01 Alan Modra <amodra@gmail.com> Update year range in copyright notice of all files. diff --git a/include/coff/internal.h b/include/coff/internal.h index 633f2bd..8e21b4e 100644 --- a/include/coff/internal.h +++ b/include/coff/internal.h @@ -377,7 +377,7 @@ struct internal_aouthdr #define C_THUMBEXTFUNC (C_THUMBEXT + 20) /* 150 */ #define C_THUMBSTATFUNC (C_THUMBSTAT + 20) /* 151 */ -/* True if XCOFF symbols of class CLASS have auxillary csect information. */ +/* True if XCOFF symbols of class CLASS have auxiliary csect information. */ #define CSECT_SYM_P(CLASS) \ ((CLASS) == C_EXT || (CLASS) == C_AIX_WEAKEXT || (CLASS) == C_HIDEXT) diff --git a/include/coff/sym.h b/include/coff/sym.h index 76204af..fd8b447 100644 --- a/include/coff/sym.h +++ b/include/coff/sym.h @@ -76,8 +76,8 @@ typedef struct { bfd_vma cbSymOffset; /* offset to start of local symbols*/ long ioptMax; /* max index into optimization symbol entries */ bfd_vma cbOptOffset; /* offset to optimization symbol entries */ - long iauxMax; /* number of auxillary symbol entries */ - bfd_vma cbAuxOffset; /* offset to start of auxillary symbol entries*/ + long iauxMax; /* number of auxiliary symbol entries */ + bfd_vma cbAuxOffset; /* offset to start of auxiliary symbol entries*/ long issMax; /* max index into local strings */ bfd_vma cbSsOffset; /* offset to start of local strings */ long issExtMax; /* max index into external strings */ diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 6c03d86..ccc7a06 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -1255,7 +1255,7 @@ struct aarch64_instr_sequence { /* The instruction that caused this sequence to be opened. */ aarch64_inst *instr; - /* The number of instructions the above instruction allows to be kept in the + /* The number of instructions the above instruction allows one to be kept in the sequence before an automatic close is done. */ int num_insns; /* The instructions currently added to the sequence. */ |