qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] target/m68k: Fix gen_load_fp for OS_LONG
@ 2023-05-08 14:08 Richard Henderson
  2023-05-08 16:06 ` Laurent Vivier
  2023-05-09 15:19 ` Philippe Mathieu-Daudé
  0 siblings, 2 replies; 4+ messages in thread
From: Richard Henderson @ 2023-05-08 14:08 UTC (permalink / raw)
  To: qemu-devel

Case was accidentally dropped in b7a94da9550b.

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



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-09 15:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-08 14:08 [PATCH] target/m68k: Fix gen_load_fp for OS_LONG Richard Henderson
2023-05-08 16:06 ` Laurent Vivier
2023-05-09 14:54   ` Richard Henderson
2023-05-09 15:19 ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).