On 10/12/18 10:30 AM, Bastian Koppelmann wrote: > +static bool trans_fmadd_s(DisasContext *ctx, arg_fmadd_s *a, uint32_t insn) > +{ > + gen_set_rm(ctx, a->rm); > + gen_helper_fmadd_s(cpu_fpr[a->rd], cpu_env, cpu_fpr[a->rs1], > + cpu_fpr[a->rs2], cpu_fpr[a->rs3]); > + return true; > +}
Missing REQUIRE_FPU at the beginning of all of the arithmetic helpers. r~