Message ID | 1553525566-14913-7-git-send-email-mateja.marjanovic@rt-rk.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/mips: Add support for MSA instructions on a big endian host | expand |
diff --git a/target/mips/msa_helper.c b/target/mips/msa_helper.c index f368f79..5aea675 100644 --- a/target/mips/msa_helper.c +++ b/target/mips/msa_helper.c @@ -1515,9 +1515,11 @@ void helper_msa_insert_df(CPUMIPSState *env, uint32_t df, uint32_t wd, case DF_WORD: pwd->w[n] = (int32_t)rs; break; +#ifdef TARGET_MIPS64 case DF_DOUBLE: pwd->d[n] = (int64_t)rs; break; +#endif default: assert(0); }