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 /gas/config | |
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 'gas/config')
-rw-r--r-- | gas/config/tc-i386.c | 2 | ||||
-rw-r--r-- | gas/config/tc-riscv.c | 4 | ||||
-rw-r--r-- | gas/config/tc-s390.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index a04fb36..9a2dfc9 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -7156,7 +7156,7 @@ process_suffix (void) break; case 0: - /* Select word/dword/qword operation with explict data sizing prefix + /* Select word/dword/qword operation with explicit data sizing prefix when there are no suitable register operands. */ if (i.tm.opcode_modifier.w && (i.prefix[DATA_PREFIX] || (i.prefix[REX_PREFIX] & REX_W)) diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c index a7a6aa3..e938a88 100644 --- a/gas/config/tc-riscv.c +++ b/gas/config/tc-riscv.c @@ -401,10 +401,10 @@ const char FLT_CHARS[] = "rRsSfFdDxXpP"; /* Indicate we are already assemble any instructions or not. */ static bfd_boolean start_assemble = FALSE; -/* Indicate ELF attributes are explictly set. */ +/* Indicate ELF attributes are explicitly set. */ static bfd_boolean explicit_attr = FALSE; -/* Indicate CSR or priv instructions are explictly used. */ +/* Indicate CSR or priv instructions are explicitly used. */ static bfd_boolean explicit_priv_attr = FALSE; /* Macros for encoding relaxation state for RVC branches and far jumps. */ diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c index 0fcb45e..c6daef9 100644 --- a/gas/config/tc-s390.c +++ b/gas/config/tc-s390.c @@ -1900,7 +1900,7 @@ s390_literals (int ignore ATTRIBUTE_UNUSED) #define MAX_HISTORY 100 -/* The .machine pseudo op allows to switch to a different CPU level in +/* The .machine pseudo op allows one to switch to a different CPU level in the asm listing. The current CPU setting can be stored on a stack with .machine push and restored with .machine pop. */ @@ -1991,7 +1991,7 @@ s390_machine (int ignore ATTRIBUTE_UNUSED) demand_empty_rest_of_line (); } -/* The .machinemode pseudo op allows to switch to a different +/* The .machinemode pseudo op allows one to switch to a different architecture mode in the asm listing. The current architecture mode setting can be stored on a stack with .machinemode push and restored with .machinemode pop. */ |