[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 01/53] target/m68k: Fix gen_load_fp for OS_LONG
|
From: |
Richard Henderson |
|
Subject: |
[PULL 01/53] target/m68k: Fix gen_load_fp for OS_LONG |
|
Date: |
Thu, 11 May 2023 09:03:58 +0100 |
Case was accidentally dropped in b7a94da9550b.
Tested-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/m68k/translate.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target/m68k/translate.c b/target/m68k/translate.c
index 744eb3748b..44d852b106 100644
--- a/target/m68k/translate.c
+++ b/target/m68k/translate.c
@@ -959,6 +959,7 @@ static void gen_load_fp(DisasContext *s, int opsize, TCGv
addr, TCGv_ptr fp,
switch (opsize) {
case OS_BYTE:
case OS_WORD:
+ case OS_LONG:
tcg_gen_qemu_ld_tl(tmp, addr, index, opsize | MO_SIGN | MO_TE);
gen_helper_exts32(cpu_env, fp, tmp);
break;
--
2.34.1
- [PULL 00/53] tcg patch queue, Richard Henderson, 2023/05/11
- [PULL 01/53] target/m68k: Fix gen_load_fp for OS_LONG,
Richard Henderson <=
- [PULL 05/53] disas: Remove target_ulong from the interface, Richard Henderson, 2023/05/11
- [PULL 04/53] disas: Move disas.c to disas/, Richard Henderson, 2023/05/11
- [PULL 07/53] disas: Move softmmu specific code to separate file, Richard Henderson, 2023/05/11
- [PULL 11/53] tcg/i386: Introduce prepare_host_addr, Richard Henderson, 2023/05/11
- [PULL 13/53] tcg/aarch64: Introduce prepare_host_addr, Richard Henderson, 2023/05/11
- [PULL 08/53] disas: Move disas.c into the target-independent source set, Richard Henderson, 2023/05/11
- [PULL 14/53] tcg/arm: Introduce prepare_host_addr, Richard Henderson, 2023/05/11
- [PULL 18/53] tcg/riscv: Introduce prepare_host_addr, Richard Henderson, 2023/05/11
- [PULL 09/53] cpu: expose qemu_cpu_list_lock for lock-guard use, Richard Henderson, 2023/05/11
- [PULL 02/53] accel/tcg: Fix atomic_mmu_lookup for reads, Richard Henderson, 2023/05/11