On 02/04/2018 10:22 PM, Michael Clark wrote: > +uint64_t helper_fmsub_s(CPURISCVState *env, uint64_t frs1, uint64_t frs2, > + uint64_t frs3) > +{ > + return float32_muladd(frs1, frs2, frs3 ^ (uint32_t)INT32_MIN, 0, > + &env->fp_status);
Missing the requested change to use float32_chs or float_muladd_negate_product et al throughout the fma family of helpers. Probably float_muladd_* since you've re-enabled default_nan_mode. r~