aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.dg/pr26719.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.dg/pr26719.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.dg/pr26719.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.dg/pr26719.c b/gcc-4.8/gcc/testsuite/gcc.dg/pr26719.c
deleted file mode 100644
index 3c87df17b..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.dg/pr26719.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* { dg-do compile } */
-/* { dg-do run } */
-/* { dg-options "-O2" } */
-
-void abort (void);
-
-int table[32][256];
-
-int main(void)
-{
- int i, j;
-
- for (i = 0; i < 32; i++)
- for (j = 0; j < 256; j++)
- table[i][j] = ((signed char)j) * i;
-
- if (table[9][132] != -1116)
- abort ();
-
- return 0;
-}