diff options
author | Jakub Jelinek <jakub@redhat.com> | 2016-09-05 21:44:26 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2016-09-05 21:44:26 +0200 |
commit | c76f7809850c894df300556e4b7c31755b6e027c (patch) | |
tree | 0f2962216a45279212244ea3de2829df40f56304 /gcc | |
parent | 0ce483917ffb79cf25d633e2dbe01a678437133e (diff) | |
download | gcc-c76f7809850c894df300556e4b7c31755b6e027c.zip gcc-c76f7809850c894df300556e4b7c31755b6e027c.tar.gz gcc-c76f7809850c894df300556e4b7c31755b6e027c.tar.bz2 |
target-supports.exp (check_effective_target_vect_simd_clones): Update comment to mention also avx512f.
* lib/target-supports.exp (check_effective_target_vect_simd_clones):
Update comment to mention also avx512f.
From-SVN: r239999
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/testsuite/lib/target-supports.exp | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d764024..a7c951b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2016-09-05 Jakub Jelinek <jakub@redhat.com> + * lib/target-supports.exp (check_effective_target_vect_simd_clones): + Update comment to mention also avx512f. + PR sanitizer/77396 * g++.dg/asan/pr77396-2.C: New test. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 0dabea0..545b3dc 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -2909,10 +2909,10 @@ proc check_effective_target_vect_simd_clones { } { } else { set et_vect_simd_clones_saved($et_index) 0 if { [istarget i?86-*-*] || [istarget x86_64-*-*] } { - # On i?86/x86_64 #pragma omp declare simd builds a sse2, avx and - # avx2 clone. Only the right clone for the specified arch will be - # chosen, but still we need to at least be able to assemble - # avx2. + # On i?86/x86_64 #pragma omp declare simd builds a sse2, avx, avx2 + # and avx512f clone. Only the right clone for the specified arch + # will be chosen, but still we need to at least be able to assemble + # avx512f. if { [check_effective_target_avx512f] } { set et_vect_simd_clones_saved($et_index) 1 } |