[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/7] target/hppa: fix shrp for wide mode
From: |
Sven Schnelle |
Subject: |
[PATCH 2/7] target/hppa: fix shrp for wide mode |
Date: |
Sun, 17 Mar 2024 23:14:26 +0100 |
Signed-off-by: Sven Schnelle <svens@stackframe.org>
---
target/hppa/translate.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/hppa/translate.c b/target/hppa/translate.c
index 6a513d7d5c..8ba31567e8 100644
--- a/target/hppa/translate.c
+++ b/target/hppa/translate.c
@@ -3462,7 +3462,7 @@ static bool trans_shrp_sar(DisasContext *ctx,
arg_shrp_sar *a)
/* Install the new nullification. */
cond_free(&ctx->null_cond);
if (a->c) {
- ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
+ ctx->null_cond = do_sed_cond(ctx, a->c, a->d, dest);
}
return nullify_end(ctx);
}
@@ -3505,7 +3505,7 @@ static bool trans_shrp_imm(DisasContext *ctx,
arg_shrp_imm *a)
/* Install the new nullification. */
cond_free(&ctx->null_cond);
if (a->c) {
- ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
+ ctx->null_cond = do_sed_cond(ctx, a->c, a->d, dest);
}
return nullify_end(ctx);
}
--
2.43.2
- [PATCH 0/7] few fixes for hppa target, Sven Schnelle, 2024/03/17
- [PATCH 1/7] target/hppa: ldcw,s uses static shift of 3, Sven Schnelle, 2024/03/17
- [PATCH 5/7] target/hppa: copy new_spc to iasq_f on be,n instruction, Sven Schnelle, 2024/03/17
- [PATCH 2/7] target/hppa: fix shrp for wide mode,
Sven Schnelle <=
- [PATCH 4/7] target/hppa: exit tb on flush cache instructions, Sven Schnelle, 2024/03/17
- [PATCH 3/7] target/hppa: fix access_id check, Sven Schnelle, 2024/03/17
- [PATCH 7/7] target/hppa: fix do_stdby_e(), Sven Schnelle, 2024/03/17