diff options
author | Cui,Lili <lili.cui@intel.com> | 2020-06-16 10:07:15 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-06-16 10:07:15 -0700 |
commit | 708a2ffff5cc2d280968a6b28268d8276d391bb4 (patch) | |
tree | 6dd7dfb8bf6d206a151be76c4b7faa6f4d82f130 /gas | |
parent | 5f8989944880cad1bfffab3801214a0a9b67b72e (diff) | |
download | gdb-708a2ffff5cc2d280968a6b28268d8276d391bb4.zip gdb-708a2ffff5cc2d280968a6b28268d8276d391bb4.tar.gz gdb-708a2ffff5cc2d280968a6b28268d8276d391bb4.tar.bz2 |
x86: Correct noavx512_vp2intersect
* config/tc-i386.c (cpu_arch): Correct noavx512_vp2intersect
cpu_arch to CPU_ANY_VP2INTERSECT_FLAGS.
* doc/c-i386.texi: Add avx512_vp2intersect.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 3 | ||||
-rw-r--r-- | gas/doc/c-i386.texi | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 4c31ecf..5b2b106 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2020-06-16 Lili Cui <lili.cui@intel.com> + + * config/tc-i386.c (cpu_arch): Correct noavx512_vp2intersect + cpu_arch to CPU_ANY_VP2INTERSECT_FLAGS. + * doc/c-i386.texi: Add avx512_vp2intersect. + 2020-06-16 Jan Beulich <jbeulich@suse.com> * config/tc-i386.c (md_assemble): Drop SSE4a from SSE check diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index b5d7e1c..24def33 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1263,7 +1263,8 @@ static const noarch_entry cpu_noarch[] = { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS }, { 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 ("noavx512_vp2intersect"), + CPU_ANY_AVX512_VP2INTERSECT_FLAGS }, { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS }, { STRING_COMMA_LEN ("noserialize"), CPU_ANY_SERIALIZE_FLAGS }, { STRING_COMMA_LEN ("notsxldtrk"), CPU_ANY_TSXLDTRK_FLAGS }, diff --git a/gas/doc/c-i386.texi b/gas/doc/c-i386.texi index 551512f..d4e6fcb 100644 --- a/gas/doc/c-i386.texi +++ b/gas/doc/c-i386.texi @@ -204,6 +204,7 @@ accept various extension mnemonics. For example, @code{avx512_vbmi2}, @code{avx512_vnni}, @code{avx512_bitalg}, +@code{avx512_vp2intersect}, @code{avx512_bf16}, @code{noavx512f}, @code{noavx512cd}, |