aboutsummaryrefslogtreecommitdiff
path: root/disas/ppc.c
diff options
context:
space:
mode:
authorzhaolichang <zhaolichang@huawei.com>2020-09-17 15:50:27 +0800
committerLaurent Vivier <laurent@vivier.eu>2020-09-17 20:40:08 +0200
commit2dbb13089fcee647b0f71def910185140399ba0d (patch)
treeb4ddccf236d524f4f88a0f3eced1bacc8f5d02d6 /disas/ppc.c
parent6f9ff551a40593432b9d34d4d4142d3bc81c95dd (diff)
downloadqemu-2dbb13089fcee647b0f71def910185140399ba0d.zip
qemu-2dbb13089fcee647b0f71def910185140399ba0d.tar.gz
qemu-2dbb13089fcee647b0f71def910185140399ba0d.tar.bz2
disas/: fix some comment spelling errors
I found that there are many spelling errors in the comments of qemu, so I used the spellcheck tool to check the spelling errors and finally found some spelling errors in the disas folder. Signed-off-by: zhaolichang <zhaolichang@huawei.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200917075029.313-9-zhaolichang@huawei.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'disas/ppc.c')
-rw-r--r--disas/ppc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disas/ppc.c b/disas/ppc.c
index 63e97cf..02be878 100644
--- a/disas/ppc.c
+++ b/disas/ppc.c
@@ -5226,7 +5226,7 @@ operand_value_powerpc (const struct powerpc_operand *operand,
if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
{
/* BITM is always some number of zeros followed by some
- number of ones, followed by some numer of zeros. */
+ number of ones, followed by some number of zeros. */
unsigned long top = operand->bitm;
/* top & -top gives the rightmost 1 bit, so this
fills in any trailing zeros. */