diff options
author | Richard Biener <rguenther@suse.de> | 2021-09-28 10:04:00 +0200 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2021-09-28 10:05:22 +0200 |
commit | 1dadd5110f8b9ac65c53207c9bda612c3309f96b (patch) | |
tree | eb2c73eb841ad4b29dcf352e6414740736bd6b99 /gcc | |
parent | ce450af5087b95001b003184b8ecc2c9bbf65378 (diff) | |
download | gcc-1dadd5110f8b9ac65c53207c9bda612c3309f96b.zip gcc-1dadd5110f8b9ac65c53207c9bda612c3309f96b.tar.gz gcc-1dadd5110f8b9ac65c53207c9bda612c3309f96b.tar.bz2 |
Fix gcc.target/i386/vect-pr97352.c for -m32 -march=cascadelake
The easiest is to disable AVX2 and AVX512F explicitely.
2021-09-28 Richard Biener <rguenther@suse.de>
* gcc.target/i386/vect-pr97352.c: Pass -mno-avx2 -mno-avx512f.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/i386/vect-pr97352.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/vect-pr97352.c b/gcc/testsuite/gcc.target/i386/vect-pr97352.c index d0e1206..f6cbf36 100644 --- a/gcc/testsuite/gcc.target/i386/vect-pr97352.c +++ b/gcc/testsuite/gcc.target/i386/vect-pr97352.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O3 -mavx" } */ +/* { dg-options "-O3 -mavx -mno-avx2 -mno-avx512f" } */ double x[2], a[4], b[4], c[5]; |