From: Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
To: gdb-patches@sourceware.org, pedro_alves@portugalmail.pt,
ambrogino.modigliani@gmail.com, ambrogino.modigliani@mail.com
Subject: [PATCH 15/23] Fix spelling mistakes in comments in .igen files
Date: Sun, 20 Nov 2016 17:41:00 -0000 [thread overview]
Message-ID: <1479663498-30295-16-git-send-email-ambrogino.modigliani@mail.com> (raw)
In-Reply-To: <1479663498-30295-1-git-send-email-ambrogino.modigliani@mail.com>
sim/mips/ChangeLog:
* sim/mips/m16.igen: Fix spelling in comments.
* sim/mips/mips.igen: Fix spelling in comments.
sim/v850/ChangeLog:
* sim/v850/v850.igen: Fix spelling in comments.
---
sim/mips/m16.igen | 4 ++--
sim/mips/mips.igen | 6 +++---
sim/v850/v850.igen | 4 ++--
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sim/mips/m16.igen b/sim/mips/m16.igen
index 74adacd..db58184 100644
--- a/sim/mips/m16.igen
+++ b/sim/mips/m16.igen
@@ -1044,12 +1044,12 @@
return target;
}
-// compute basepc dependant on us being in a delay slot
+// compute basepc dependent on us being in a delay slot
:function:::address_word:basepc:
{
if (STATE & simDELAYSLOT)
{
- return DSPC; /* return saved address of preceeding jmp */
+ return DSPC; /* return saved address of preceding jmp */
}
else
{
diff --git a/sim/mips/mips.igen b/sim/mips/mips.igen
index 522cad6..99caefb 100644
--- a/sim/mips/mips.igen
+++ b/sim/mips/mips.igen
@@ -254,9 +254,9 @@
// suggest they don't.
//
// In reality, some MIPS IV parts, such as the VR5000 and VR5400, do have
-// these restrictions, while others, like the VR5500, don't. To accomodate
+// these restrictions, while others, like the VR5500, don't. To accommodate
// such differences, the MIPS IV and MIPS V version of these helper functions
-// use auxillary routines to determine whether the restriction applies.
+// use auxiliary routines to determine whether the restriction applies.
// check_mf_cycles:
//
@@ -417,7 +417,7 @@
*micromips32:
*micromips64:
{
- /* FIXME: could record the fact that a stall occured if we want */
+ /* FIXME: could record the fact that a stall occurred if we want */
signed64 time = sim_events_time (SD);
hi->op.timestamp = time;
lo->op.timestamp = time;
diff --git a/sim/v850/v850.igen b/sim/v850/v850.igen
index 41a9075..af9b57b 100644
--- a/sim/v850/v850.igen
+++ b/sim/v850/v850.igen
@@ -1149,7 +1149,7 @@ rrrrr,111111,RRRRR + wwww,0011110,mmmm,0:XI:::mac
hi = (((op0 >> 16) & 0xFFFF) * ((op1 >> 16) & 0xFFFF));
/* We now need to add all of these results together, taking care
- to propogate the carries from the additions: */
+ to propagate the carries from the additions: */
RdLo = Add32 (lo, (mid1 << 16), & carry);
RdHi = carry;
RdLo = Add32 (RdLo, (mid2 << 16), & carry);
@@ -1214,7 +1214,7 @@ rrrrr,111111,RRRRR + wwww,0011111,mmmm,0:XI:::macu
hi = (((op0 >> 16) & 0xFFFF) * ((op1 >> 16) & 0xFFFF));
/* We now need to add all of these results together, taking care
- to propogate the carries from the additions: */
+ to propagate the carries from the additions: */
RdLo = Add32 (lo, (mid1 << 16), & carry);
RdHi = carry;
RdLo = Add32 (RdLo, (mid2 << 16), & carry);
--
2.7.4
next prev parent reply other threads:[~2016-11-20 17:41 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-20 17:38 [PATCH 00/23] Fix spelling mistakes in comments Ambrogino Modigliani
2016-11-20 17:38 ` [PATCH 01/23] Fix spelling mistakes in comments in C source files (bfd) Ambrogino Modigliani
2016-11-20 17:39 ` [PATCH 03/23] Fix spelling mistakes in comments in C source files (sim) Ambrogino Modigliani
2016-11-20 17:39 ` [PATCH 04/23] Fix spelling mistakes in comments in C source files (rest of modules) Ambrogino Modigliani
2016-11-20 17:39 ` [PATCH 08/23] Fix spelling mistakes in comments in Ada source files Ambrogino Modigliani
2016-11-22 16:08 ` Pedro Alves
2016-11-20 17:39 ` [PATCH 06/23] Fix spelling mistakes in comments in makefiles Ambrogino Modigliani
2016-11-20 17:39 ` [PATCH 02/23] Fix spelling mistakes in comments in C source files (gdb) Ambrogino Modigliani
2016-11-21 15:43 ` Yao Qi
2016-11-22 15:21 ` Pedro Alves
2016-11-20 17:39 ` [PATCH 05/23] Fix spelling mistakes in comments in configure scripts Ambrogino Modigliani
2016-11-22 15:55 ` Pedro Alves
2016-11-20 17:39 ` [PATCH 07/23] Fix spelling mistakes in comments in shell scripts Ambrogino Modigliani
2016-11-22 16:07 ` Pedro Alves
2016-11-20 17:40 ` [PATCH 09/23] Fix spelling mistakes in comments in Assembler files Ambrogino Modigliani
2016-11-22 16:10 ` Pedro Alves
2016-11-20 17:41 ` [PATCH 10/23] Fix spelling mistakes in comments in Expect scripts Ambrogino Modigliani
2016-11-21 22:23 ` Yao Qi
2016-11-20 17:41 ` [PATCH 11/23] Fix spelling mistakes in comments in XML files Ambrogino Modigliani
2016-11-21 20:41 ` Yao Qi
2016-11-20 17:41 ` [PATCH 21/23] Fix spelling mistakes in comments in .sc files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 13/23] Fix spelling mistakes in comments in .def files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 17/23] Fix spelling mistakes in comments in .inc files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 14/23] Fix spelling mistakes in comments in .em files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 19/23] Fix spelling mistakes in comments in .m4 files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 18/23] Fix spelling mistakes in comments in .l files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 12/23] Fix spelling mistakes in comments in .cpu files Ambrogino Modigliani
2016-11-20 17:41 ` Ambrogino Modigliani [this message]
2016-11-20 17:41 ` [PATCH 16/23] Fix spelling mistakes in comments in .in files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 22/23] Fix spelling mistakes in comments in .tbl files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 23/23] Fix spelling mistakes in comments in .y files Ambrogino Modigliani
2016-11-20 17:41 ` [PATCH 20/23] Fix spelling mistakes in comments in .opc files Ambrogino Modigliani
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=1479663498-30295-16-git-send-email-ambrogino.modigliani@mail.com \
--to=ambrogino.modigliani@gmail.com \
--cc=ambrogino.modigliani@mail.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