summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr70876.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/pr70876.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/pr70876.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/testsuite/gcc.target/i386/pr70876.c b/gcc/testsuite/gcc.target/i386/pr70876.c
deleted file mode 100644
index c9bab690b33..00000000000
--- a/gcc/testsuite/gcc.target/i386/pr70876.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { dg-do compile { target { ! x32 } } } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx -Wno-implicit-function-declaration" } */
-
-void f (char *s1, char *s2)
-{
- int z = 5;
-
- struct { char a[z]; } x;
-
- s1[0] = s2[0];
-
- foo (x, x);
-}