From: Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
To: gdb-patches@sourceware.org, pedro_alves@portugalmail.pt
Subject: [PATCH 09/20] Fix spelling mistakes in comments in .cpu files
Date: Sun, 20 Nov 2016 15:07:00 -0000 [thread overview]
Message-ID: <1479654381-20698-10-git-send-email-ambrogino.modigliani@mail.com> (raw)
In-Reply-To: <1479654381-20698-1-git-send-email-ambrogino.modigliani@mail.com>
cpu/ChangeLog:
* cpu/m32c.cpu: Fix spelling in comments.
* cpu/m32r.cpu: Fix spelling in comments.
* cpu/mt.cpu: Fix spelling in comments.
* cpu/or1k.cpu: Fix spelling in comments.
* cpu/xstormy16.cpu: Fix spelling in comments.
---
cpu/m32c.cpu | 2 +-
cpu/m32r.cpu | 2 +-
cpu/mt.cpu | 2 +-
cpu/or1k.cpu | 2 +-
cpu/xstormy16.cpu | 8 ++++----
5 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/cpu/m32c.cpu b/cpu/m32c.cpu
index bcc3616..7d313bc 100644
--- a/cpu/m32c.cpu
+++ b/cpu/m32c.cpu
@@ -10292,7 +10292,7 @@
(binary-arith32-imm-dst-defn HI HI .w 1 stz X #x9 #x0 #xF stz-sem)
;-------------------------------------------------------------
-; stzx - store on zero extention
+; stzx - store on zero extension
;-------------------------------------------------------------
(define-pmacro (stzx-sem mode src1 src2 dst)
diff --git a/cpu/m32r.cpu b/cpu/m32r.cpu
index 003c848..8de8a43 100644
--- a/cpu/m32r.cpu
+++ b/cpu/m32r.cpu
@@ -742,7 +742,7 @@
(dnop disp16 "16 bit displacement" () h-iaddr f-disp16)
(dnop disp24 "24 bit displacement" (RELAX) h-iaddr f-disp24)
-; These hardware elements are refered to frequently.
+; These hardware elements are referred to frequently.
(dnop condbit "condition bit" (SEM-ONLY) h-cond f-nil)
(dnop accum "accumulator" (SEM-ONLY) h-accum f-nil)
diff --git a/cpu/mt.cpu b/cpu/mt.cpu
index bb987f3..bf49a28 100644
--- a/cpu/mt.cpu
+++ b/cpu/mt.cpu
@@ -163,7 +163,7 @@
; f-imm16: 16 bit immediate value when not an offset.
; f-imm16a: 16 bit immediate value when it's a pc-rel offset.
; f-uu4a: unused 4 bit field.
-; f-uu4b: second unsed 4 bit field.
+; f-uu4b: second unused 4 bit field.
; f-uu1: unused 1 bit field
; f-uu12: unused 12 bit field.
; f-uu16: unused 16 bit field.
diff --git a/cpu/or1k.cpu b/cpu/or1k.cpu
index 3a932bc..169344c 100644
--- a/cpu/or1k.cpu
+++ b/cpu/or1k.cpu
@@ -20,7 +20,7 @@
(include "simplify.inc")
; The OpenRISC family is a set of RISC microprocessor architectures with an
-; emphasis on scalability and is targetted at embedded use.
+; emphasis on scalability and is targeted at embedded use.
; The CPU RTL development is a collaborative open source effort.
; http://opencores.org/or1k
; http://openrisc.net
diff --git a/cpu/xstormy16.cpu b/cpu/xstormy16.cpu
index ae7e042..61b27cb 100644
--- a/cpu/xstormy16.cpu
+++ b/cpu/xstormy16.cpu
@@ -941,7 +941,7 @@
(set-psw Rdm (index-of Rdm) (and #xFF (mem QI (add (join SI HI Rb Rs) imm12))) ws2))
(set Rs (add Rs (add ws2 1)))
; Note - despite the XStormy16 ISA documentation the
- ; addition *is* propogated into the base register.
+ ; addition *is* propagated into the base register.
(if (eq Rs 0) (set Rb (add Rb 1)))
)
()
@@ -954,7 +954,7 @@
(+ OP1_6 OP2A_C ws2 Rs OP4M_1 Rdm OP5A_0 Rb imm12)
(sequence ()
; Note - despite the XStormy16 ISA documentation the
- ; subtraction *is* propogated into the base register.
+ ; subtraction *is* propagated into the base register.
(if (eq Rs 0) (set Rb (sub Rb 1)))
(set Rs (sub Rs (add ws2 1)))
(if ws2
@@ -990,7 +990,7 @@
(set-psw-nowrite (index-of Rdm) Rdm ws2)
(set Rs (add Rs (add ws2 1)))
; Note - despite the XStormy16 ISA documentation the
- ; addition *is* propogated into the base register.
+ ; addition *is* propagated into the base register.
(if (eq Rs 0) (set Rb (add Rb 1)))
)
()
@@ -1003,7 +1003,7 @@
(+ OP1_6 OP2A_E ws2 Rs OP4M_1 Rdm OP5A_0 Rb imm12)
(sequence ()
; Note - despite the XStormy16 ISA documentation the
- ; subtraction *is* propogated into the base register.
+ ; subtraction *is* propagated into the base register.
(if (eq Rs 0) (set Rb (sub Rb 1)))
(set Rs (sub Rs (add ws2 1)))
(set-psw-nowrite (index-of Rdm) Rdm ws2)
--
2.7.4
next prev parent reply other threads:[~2016-11-20 15:07 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-20 15:06 [PATCH 00/20] Fix spelling mistakes in comments Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 04/20] Fix spelling mistakes in comments in shell scripts Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 05/20] Fix spelling mistakes in comments in Ada source files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 15/20] Fix spelling mistakes in comments in .l files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 03/20] Fix spelling mistakes in comments in makefiles Ambrogino Modigliani
2016-11-20 16:53 ` Simon Marchi
2016-11-20 15:07 ` Ambrogino Modigliani [this message]
2016-11-20 15:07 ` [PATCH 06/20] Fix spelling mistakes in comments in Assembler files Ambrogino Modigliani
2016-11-20 16:59 ` Simon Marchi
2016-11-20 15:07 ` [PATCH 12/20] Fix spelling mistakes in comments in .igen files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 18/20] Fix spelling mistakes in comments in .sc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 07/20] Fix spelling mistakes in comments in Expect scripts Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 13/20] Fix spelling mistakes in comments in .in files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 16/20] Fix spelling mistakes in comments in .m4 files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 02/20] Fix spelling mistakes in comments in configure scripts Ambrogino Modigliani
2016-11-20 16:36 ` Simon Marchi
2016-11-20 15:07 ` [PATCH 20/20] Fix spelling mistakes in comments in .y files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 11/20] Fix spelling mistakes in comments in .em files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 08/20] Fix spelling mistakes in comments in XML files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 14/20] Fix spelling mistakes in comments in .inc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 10/20] Fix spelling mistakes in comments in .def files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 19/20] Fix spelling mistakes in comments in .tbl files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 17/20] Fix spelling mistakes in comments in .opc files Ambrogino Modigliani
2016-11-20 17:30 ` [PATCH 00/20] Fix spelling mistakes in comments Simon Marchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1479654381-20698-10-git-send-email-ambrogino.modigliani@mail.com \
--to=ambrogino.modigliani@gmail.com \
--cc=gdb-patches@sourceware.org \
--cc=pedro_alves@portugalmail.pt \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox