summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr79764.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/pr79764.C')
-rw-r--r--gcc/testsuite/g++.dg/pr79764.C12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/testsuite/g++.dg/pr79764.C b/gcc/testsuite/g++.dg/pr79764.C
deleted file mode 100644
index 293aa337693..00000000000
--- a/gcc/testsuite/g++.dg/pr79764.C
+++ /dev/null
@@ -1,12 +0,0 @@
-/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx" } */
-
-typedef float __m256 __attribute__ (( __vector_size__(32), __may_alias__ ));
-struct A {
- __m256 ymm;
- const float &f() const;
-};
-
-const float &A::f() const {
- return ymm[1];
-}