aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/noevex512-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/noevex512-1.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/noevex512-1.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/testsuite/gcc.target/i386/noevex512-1.c b/gcc/testsuite/gcc.target/i386/noevex512-1.c
deleted file mode 100644
index 89eb528..0000000
--- a/gcc/testsuite/gcc.target/i386/noevex512-1.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O0 -march=x86-64 -mavx512f -mno-evex512 -Wno-psabi" } */
-/* { dg-warning "'-mevex512' will be deprecated in GCC 16 due to all machines 512 bit vector size supported" "" { target *-*-* } 0 } */
-/* { dg-final { scan-assembler-not ".%zmm" } } */
-
-typedef double __m512d __attribute__ ((__vector_size__ (64), __may_alias__));
-
-__m512d
-foo ()
-{
- __m512d a, b;
- a = a + b;
- return a;
-}