diff options
author | Helge Deller | 2017-12-12 22:23:19 +0100 |
---|---|---|
committer | Richard Henderson | 2018-01-31 14:30:50 +0100 |
commit | 3f7367e2ccc33aefd962c9459624ce40efa7e7ad (patch) | |
tree | 34c66ea79611cf363df62574f96f8a9e1b9d2087 /target | |
parent | target/hppa: Increase number of temp regs (diff) | |
download | qemu-3f7367e2ccc33aefd962c9459624ce40efa7e7ad.tar.gz qemu-3f7367e2ccc33aefd962c9459624ce40efa7e7ad.tar.xz qemu-3f7367e2ccc33aefd962c9459624ce40efa7e7ad.zip |
target/hppa: Fix comment
Signed-off-by: Helge Deller <deller@gmx.de>
Message-Id: <20171212212319.GA31494@ls3530.fritz.box>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/hppa/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/hppa/translate.c b/target/hppa/translate.c index 6ff82d3e9c..b773b0ef09 100644 --- a/target/hppa/translate.c +++ b/target/hppa/translate.c @@ -3193,7 +3193,7 @@ static DisasJumpType trans_store_w(DisasContext *ctx, uint32_t insn) /* FSTW without modification. */ return do_fstorew(ctx, ext2 * 32 + rt, rb, 0, 0, i, sp, 0); case 2: - /* LDW with modification. */ + /* STW with modification. */ return do_store(ctx, rt, rb, i, sp, (i < 0 ? 1 : -1), MO_TEUL); default: return gen_illegal(ctx); |