On Tue, Nov 10, 2020 at 08:03:29PM +0800, Hongtao Liu via Gcc-patches wrote: > --- a/gcc/config/i386/i386.h > +++ b/gcc/config/i386/i386.h > @@ -2437,6 +2437,7 @@ const wide_int_bitmask PTA_AVX512BF16 (0, > HOST_WIDE_INT_1U << 11); > const wide_int_bitmask PTA_WAITPKG (0, HOST_WIDE_INT_1U << 12); > const wide_int_bitmask PTA_MOVDIRI(0, HOST_WIDE_INT_1U << 13); > const wide_int_bitmask PTA_MOVDIR64B(0, HOST_WIDE_INT_1U << 14); > +const wide_int_bitmask PTA_CLDEMOTE(0, HOST_WIDE_INT_1U << 16);
Formatting, there should be a space between PTA_* and (. Please fix this up on both branches not just for the entries you've added but also for the older ones, and please fix it on the trunk too: const wide_int_bitmask PTA_MOVDIRI(0, HOST_WIDE_INT_1U << 13); const wide_int_bitmask PTA_MOVDIR64B(0, HOST_WIDE_INT_1U << 14); ... const wide_int_bitmask PTA_AMX_TILE(0, HOST_WIDE_INT_1U << 19); const wide_int_bitmask PTA_AMX_INT8(0, HOST_WIDE_INT_1U << 20); const wide_int_bitmask PTA_AMX_BF16(0, HOST_WIDE_INT_1U << 21); ... const wide_int_bitmask PTA_HRESET(0, HOST_WIDE_INT_1U << 23); on the trunk suffer from this. Ok for branches and the above change to trunk is preapproved too, but please bootstrap/regtest all backports next time. Jakub