From dd455cf51d2b273edf6173fcb25fc1e3c5b966b2 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 6 Jun 2019 07:57:52 -0700 Subject: gas: Add .enqcmd and noenqcmd directives 2019-06-06 Lili Cui * config/tc-i386.c (cpu_arch): Add .enqcmd. (cpu_noarch): Add noenqcmd. * doc/c-i386.texi: Document noenqcmd. --- gas/config/tc-i386.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gas/config') diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 585375f..050c872 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1084,6 +1084,8 @@ static const arch_entry cpu_arch[] = CPU_AVX512_BF16_FLAGS, 0 }, { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN, CPU_AVX512_VP2INTERSECT_FLAGS, 0 }, + { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN, + CPU_ENQCMD_FLAGS, 0 }, }; static const noarch_entry cpu_noarch[] = @@ -1125,6 +1127,7 @@ static const noarch_entry cpu_noarch[] = { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS }, { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS }, { STRING_COMMA_LEN ("noavx512_vp2intersect"), CPU_ANY_SHSTK_FLAGS }, + { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS }, }; #ifdef I386COFF -- cgit v1.1