On 01/22/2018 07:53 PM, Richard Henderson wrote: > +static const ARMCPRegInfo zcr_el1_reginfo = { > + .name = "ZCR_EL1", .state = ARM_CP_STATE_AA64, > + .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 2, .opc2 = 0, > + .access = PL1_RW, .accessfn = zcr_access, .type = ARM_CP_64BIT, > + .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[1]), > + .writefn = zcr_write, .raw_writefn = raw_write > +};
Ho hum. Got far enough in the rest of my rebasing to see that .type must be dropped -- there's an assert saying STATE_AA64 implies 64BIT and shouldn't be repeated. r~