diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2019-06-06 07:57:52 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2019-06-06 07:57:52 -0700 |
commit | dd455cf51d2b273edf6173fcb25fc1e3c5b966b2 (patch) | |
tree | 4c149dc969f1fdadb5522dcd0236354e31d0d52a /gas/config | |
parent | 8d01b5310ee3c5f8b62eb1b8177e6ab7f25d4a2c (diff) | |
download | gdb-dd455cf51d2b273edf6173fcb25fc1e3c5b966b2.zip gdb-dd455cf51d2b273edf6173fcb25fc1e3c5b966b2.tar.gz gdb-dd455cf51d2b273edf6173fcb25fc1e3c5b966b2.tar.bz2 |
gas: Add .enqcmd and noenqcmd directives
2019-06-06 Lili Cui <lili.cui@intel.com>
* config/tc-i386.c (cpu_arch): Add .enqcmd.
(cpu_noarch): Add noenqcmd.
* doc/c-i386.texi: Document noenqcmd.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 |