On 6/6/19 12:46 PM, Peter Maydell wrote: > +static bool trans_VJCVT(DisasContext *s, arg_VJCVT *a) > +{ > + TCGv_i32 vd; > + TCGv_i64 vm; > + > + /* UNDEF accesses to D16-D31 if they don't exist. */ > + if (!dc_isar_feature(aa32_fp_d32, s) && (a->vm & 0x10)) { > + return false; > + }
Lost the jscvt check? r~