summaryrefslogtreecommitdiffstats
path: root/target/mips
diff options
context:
space:
mode:
authorNi Hui2022-05-03 16:42:41 +0200
committerPhilippe Mathieu-Daudé2022-06-11 11:34:12 +0200
commit1d29f899e7f2ae9bd1bc3eb0c59e72fe932f53a6 (patch)
treeae7a6e5479c91b1373ec01f40b34b0df9c89798e /target/mips
parenttarget/mips: Fix store adress of high 64bit in helper_msa_st_b() (diff)
downloadqemu-1d29f899e7f2ae9bd1bc3eb0c59e72fe932f53a6.tar.gz
qemu-1d29f899e7f2ae9bd1bc3eb0c59e72fe932f53a6.tar.xz
qemu-1d29f899e7f2ae9bd1bc3eb0c59e72fe932f53a6.zip
target/mips: Fix FTRUNC_S and FTRUNC_U trans helper
Fix the FTRUNC_S and FTRUNC_U trans helper problem. Fixes: 5c5b64000c ("target/mips: Convert MSA 2RF instruction format to decodetree") Signed-off-by: nihui <shuizhuyuanluo@126.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220503144241.289239-1-shuizhuyuanluo@126.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'target/mips')
-rw-r--r--target/mips/tcg/msa_translate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/mips/tcg/msa_translate.c b/target/mips/tcg/msa_translate.c
index 0b3dd0957c..1bcdbb1121 100644
--- a/target/mips/tcg/msa_translate.c
+++ b/target/mips/tcg/msa_translate.c
@@ -752,8 +752,8 @@ static bool trans_msa_2rf(DisasContext *ctx, arg_msa_r *a,
}
TRANS(FCLASS, trans_msa_2rf, gen_helper_msa_fclass_df);
-TRANS(FTRUNC_S, trans_msa_2rf, gen_helper_msa_fclass_df);
-TRANS(FTRUNC_U, trans_msa_2rf, gen_helper_msa_ftrunc_s_df);
+TRANS(FTRUNC_S, trans_msa_2rf, gen_helper_msa_ftrunc_s_df);
+TRANS(FTRUNC_U, trans_msa_2rf, gen_helper_msa_ftrunc_u_df);
TRANS(FSQRT, trans_msa_2rf, gen_helper_msa_fsqrt_df);
TRANS(FRSQRT, trans_msa_2rf, gen_helper_msa_frsqrt_df);
TRANS(FRCP, trans_msa_2rf, gen_helper_msa_frcp_df);