[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 4/9] target/hppa: ldcw,s uses static shift of 3
From: |
Richard Henderson |
Subject: |
[PULL 4/9] target/hppa: ldcw,s uses static shift of 3 |
Date: |
Tue, 19 Mar 2024 14:32:18 -1000 |
From: Sven Schnelle <svens@stackframe.org>
Fixes: 96d6407f363 ("target-hppa: Implement loads and stores")
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240319161921.487080-2-svens@stackframe.org>
Signed-off-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 be0b0494d0..47c6db78c7 100644
--- a/target/hppa/translate.c
+++ b/target/hppa/translate.c
@@ -3135,7 +3135,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.34.1
- [PULL 0/9] target/hppa fixes for 9.0, Richard Henderson, 2024/03/19
- [PULL 1/9] target/hppa: Fix assemble_16 insns for wide mode, Richard Henderson, 2024/03/19
- [PULL 2/9] target/hppa: Fix assemble_11a insns for wide mode, Richard Henderson, 2024/03/19
- [PULL 3/9] target/hppa: Fix assemble_12a insns for wide mode, Richard Henderson, 2024/03/19
- [PULL 4/9] target/hppa: ldcw,s uses static shift of 3,
Richard Henderson <=
- [PULL 5/9] target/hppa: fix shrp for wide mode, Richard Henderson, 2024/03/19
- [PULL 7/9] target/hppa: exit tb on flush cache instructions, Richard Henderson, 2024/03/19
- [PULL 6/9] target/hppa: fix access_id check, Richard Henderson, 2024/03/19
- [PULL 8/9] target/hppa: mask privilege bits in mfia, Richard Henderson, 2024/03/19
- [PULL 9/9] target/hppa: fix do_stdby_e(), Richard Henderson, 2024/03/19
- Re: [PULL 0/9] target/hppa fixes for 9.0, Peter Maydell, 2024/03/20
- Re: [PULL 0/9] target/hppa fixes for 9.0, Michael Tokarev, 2024/03/21