On 6/24/25 07:28, Peter Maydell wrote:
+static bool do_azz_acc_fp(DisasContext *s, int nreg, int nsel, + int rv, int off, int zn, int zm, + int data, int shsel, bool multi, int fpst, + gen_helper_gvec_4_ptr *fn) +{ + if (sme_sm_enabled_check(s)) {Looking more closely, this isn't the right check: these insns all call CheckStreamingSVEAndZAEnabled(), so we want sme_smza_enabled_check(). (Which makes sense, as we're accessing the zarray.)
Whoops, yes indeed. r~