From: Aleksandar Markovic Date: Tue, 2 Jul 2019 11:50:13 +0000 (+0200) Subject: target/mips: Correct helper for MSA FCLASS. instructions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=698c5752c4e618dc17b4c78dfa566896c7bce5ef;p=qemu.git target/mips: Correct helper for MSA FCLASS. instructions Correct helper for MSA FCLASS. instructions. Signed-off-by: Aleksandar Markovic Reviewed-by: Aleksandar Rikalo Message-Id: <1562068213-11307-8-git-send-email-aleksandar.markovic@rt-rk.com> --- diff --git a/target/mips/msa_helper.c b/target/mips/msa_helper.c index 97f840b6e8..a383c40ece 100644 --- a/target/mips/msa_helper.c +++ b/target/mips/msa_helper.c @@ -4058,9 +4058,11 @@ void helper_msa_fclass_df(CPUMIPSState *env, uint32_t df, pwd->w[1] = float_class_s(pws->w[1], status); pwd->w[2] = float_class_s(pws->w[2], status); pwd->w[3] = float_class_s(pws->w[3], status); - } else { + } else if (df == DF_DOUBLE) { pwd->d[0] = float_class_d(pws->d[0], status); pwd->d[1] = float_class_d(pws->d[1], status); + } else { + assert(0); } }