Commit c76f7809 by Jakub Jelinek Committed by Jakub Jelinek

target-supports.exp (check_effective_target_vect_simd_clones): Update comment to…

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
parent 0ce48391
2016-09-05 Jakub Jelinek <jakub@redhat.com> 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 PR sanitizer/77396
* g++.dg/asan/pr77396-2.C: New test. * g++.dg/asan/pr77396-2.C: New test.
......
...@@ -2909,10 +2909,10 @@ proc check_effective_target_vect_simd_clones { } { ...@@ -2909,10 +2909,10 @@ proc check_effective_target_vect_simd_clones { } {
} else { } else {
set et_vect_simd_clones_saved($et_index) 0 set et_vect_simd_clones_saved($et_index) 0
if { [istarget i?86-*-*] || [istarget x86_64-*-*] } { if { [istarget i?86-*-*] || [istarget x86_64-*-*] } {
# On i?86/x86_64 #pragma omp declare simd builds a sse2, avx and # On i?86/x86_64 #pragma omp declare simd builds a sse2, avx, avx2
# avx2 clone. Only the right clone for the specified arch will be # and avx512f clone. Only the right clone for the specified arch
# chosen, but still we need to at least be able to assemble # will be chosen, but still we need to at least be able to assemble
# avx2. # avx512f.
if { [check_effective_target_avx512f] } { if { [check_effective_target_avx512f] } {
set et_vect_simd_clones_saved($et_index) 1 set et_vect_simd_clones_saved($et_index) 1
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment