[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 1/6] target/hppa: ldcw,s uses static shift of 3
From: |
Sven Schnelle |
Subject: |
[PATCH v2 1/6] target/hppa: ldcw,s uses static shift of 3 |
Date: |
Tue, 19 Mar 2024 17:19:16 +0100 |
Fixes: 96d6407f363 ("target-hppa: Implement loads and stores")
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
target/hppa/translate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/hppa/translate.c b/target/hppa/translate.c
index eb2046c5ad..6a513d7d5c 100644
--- a/target/hppa/translate.c
+++ b/target/hppa/translate.c
@@ -3085,7 +3085,7 @@ static bool trans_ldc(DisasContext *ctx, arg_ldst *a)
dest = dest_gpr(ctx, a->t);
}
- form_gva(ctx, &addr, &ofs, a->b, a->x, a->scale ? a->size : 0,
+ form_gva(ctx, &addr, &ofs, a->b, a->x, a->scale ? 3 : 0,
a->disp, a->sp, a->m, MMU_DISABLED(ctx));
/*
--
2.43.2
- [PATCH v2 0/6] few fixes for hppa target, Sven Schnelle, 2024/03/19
- [PATCH v2 1/6] target/hppa: ldcw,s uses static shift of 3,
Sven Schnelle <=
- [PATCH v2 2/6] target/hppa: fix shrp for wide mode, Sven Schnelle, 2024/03/19
- [PATCH v2 6/6] target/hppa: fix do_stdby_e(), Sven Schnelle, 2024/03/19
- [PATCH v2 5/6] target/hppa: mask privilege bits in mfia, Sven Schnelle, 2024/03/19
- [PATCH v2 4/6] target/hppa: exit tb on flush cache instructions, Sven Schnelle, 2024/03/19
- [PATCH v2 3/6] target/hppa: fix access_id check, Sven Schnelle, 2024/03/19