On 8/10/19 5:12 AM, Jan Bobek wrote: > +enum { > + CK_CPUID_MMX = 1, > + CK_CPUID_3DNOW, > + CK_CPUID_SSE, > + CK_CPUID_SSE2, > + CK_CPUID_SSE3, > + CK_CPUID_SSSE3, > + CK_CPUID_SSE4_1, > + CK_CPUID_SSE4_2, > + CK_CPUID_SSE4A, > + CK_CPUID_AVX, > + CK_CPUID_AVX2, > +};
Name the enumeration, > +static int ck_cpuid(CPUX86State *env, DisasContext *s, int ck_cpuid_feat) and use it in the parameter. Return bool and true on success. Otherwise, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~