aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorliuhongt <hongtao.liu@intel.com>2020-05-06 14:06:19 +0800
committerliuhongt <hongtao.liu@intel.com>2020-05-06 17:53:30 +0800
commita21c38fbe3e49cf58cb6710fe63e37819743ada6 (patch)
treee932516ae0c7cc6ddb1858cd067705bdff67719e /gcc
parent2b6f6aeea1846116d6f1f0c3d9ccdd9cc151b385 (diff)
downloadgcc-a21c38fbe3e49cf58cb6710fe63e37819743ada6.zip
gcc-a21c38fbe3e49cf58cb6710fe63e37819743ada6.tar.gz
gcc-a21c38fbe3e49cf58cb6710fe63e37819743ada6.tar.bz2
Add ENQCMD, AVX512BF16, AVX512_VP2INTERSECT to gcc.target/i386/funcspec-56.inc.
gcc/testuite/ChangeLog * gcc.target/i386/funcspec-56.inc: Add enqcmd, avx512bf16, avx512vp2intersect.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.target/i386/funcspec-56.inc6
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index a66a012..ce0ceea 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-06 Hongtao.liu <hongtao.liu@intel.com>
+
+ * gcc.target/i386/funcspec-56.inc: Add enqcmd, avx512bf16,
+ avx512vp2intersect.
+
2020-05-06 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/94921
diff --git a/gcc/testsuite/gcc.target/i386/funcspec-56.inc b/gcc/testsuite/gcc.target/i386/funcspec-56.inc
index 0053b53..9fe4a21 100644
--- a/gcc/testsuite/gcc.target/i386/funcspec-56.inc
+++ b/gcc/testsuite/gcc.target/i386/funcspec-56.inc
@@ -68,6 +68,9 @@ extern void test_cld (void) __attribute__((__target__("cld")));
extern void test_recip (void) __attribute__((__target__("recip")));
extern void test_serialize (void) __attribute__((__target__("serialize")));
extern void test_tsxldtrk (void) __attribute__((__target__("tsxldtrk")));
+extern void test_enqcmd (void) __attribute__((__target__("enqcmd")));
+extern void test_avx512bf16 (void) __attribute__((__target__("avx512bf16")));
+extern void test_avx512vp2intersect (void) __attribute__((__target__("avx512vp2intersect")));
extern void test_no_sgx (void) __attribute__((__target__("no-sgx")));
extern void test_no_avx5124fmaps(void) __attribute__((__target__("no-avx5124fmaps")));
@@ -137,6 +140,9 @@ extern void test_no_cld (void) __attribute__((__target__("no-cld")));
extern void test_no_recip (void) __attribute__((__target__("no-recip")));
extern void test_no_serialize (void) __attribute__((__target__("no-serialize")));
extern void test_no_tsxldtrk (void) __attribute__((__target__("no-tsxldtrk")));
+extern void test_no_enqcmd (void) __attribute__((__target__("no-enqcmd")));
+extern void test_no_avx512bf16 (void) __attribute__((__target__("no-avx512bf16")));
+extern void test_no_avx512vp2intersect (void) __attribute__((__target__("no-avx512vp2intersect")));
extern void test_arch_nocona (void) __attribute__((__target__("arch=nocona")));
extern void test_arch_core2 (void) __attribute__((__target__("arch=core2")));