diff options
Diffstat (limited to 'gcc/config/i386/driver-i386.c')
-rw-r--r-- | gcc/config/i386/driver-i386.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c index 22ad5bcf..d5c62c0 100644 --- a/gcc/config/i386/driver-i386.c +++ b/gcc/config/i386/driver-i386.c @@ -424,6 +424,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) unsigned int has_avx512vnni = 0, has_vaes = 0; unsigned int has_vpclmulqdq = 0; unsigned int has_movdiri = 0, has_movdir64b = 0; + unsigned int has_enqcmd = 0; unsigned int has_waitpkg = 0; unsigned int has_cldemote = 0; unsigned int has_avx512bf16 = 0; @@ -526,6 +527,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) has_avx512bitalg = ecx & bit_AVX512BITALG; has_movdiri = ecx & bit_MOVDIRI; has_movdir64b = ecx & bit_MOVDIR64B; + has_enqcmd = ecx & bit_ENQCMD; has_cldemote = ecx & bit_CLDEMOTE; has_avx5124vnniw = edx & bit_AVX5124VNNIW; @@ -1144,6 +1146,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) const char *avx512bitalg = has_avx512bitalg ? " -mavx512bitalg" : " -mno-avx512bitalg"; const char *movdiri = has_movdiri ? " -mmovdiri" : " -mno-movdiri"; const char *movdir64b = has_movdir64b ? " -mmovdir64b" : " -mno-movdir64b"; + const char *enqcmd = has_enqcmd ? " -menqcmd" : " -mno-enqcmd"; const char *waitpkg = has_waitpkg ? " -mwaitpkg" : " -mno-waitpkg"; const char *cldemote = has_cldemote ? " -mcldemote" : " -mno-cldemote"; const char *ptwrite = has_ptwrite ? " -mptwrite" : " -mno-ptwrite"; @@ -1162,7 +1165,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) clwb, mwaitx, clzero, pku, rdpid, gfni, shstk, avx512vbmi2, avx512vnni, vaes, vpclmulqdq, avx512bitalg, movdiri, movdir64b, waitpkg, cldemote, - ptwrite, avx512bf16, + ptwrite, avx512bf16, enqcmd, NULL); } |