aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr25481.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr25481.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr25481.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr25481.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr25481.c
deleted file mode 100644
index 3072e5ecb..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr25481.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* { dg-do compile } */
-
-struct s {
- int *blah;
-};
-
-static struct s array[] = {
- { 0 }
-};
-
-void
-foo (struct s *p)
-{
- unsigned int n = 1;
- struct s *q = &array[n];
- while (p < q)
- p++;
-}