aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr47958-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr47958-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr47958-1.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr47958-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr47958-1.c
deleted file mode 100644
index 9fdf142fc..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr47958-1.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { dg-do assemble } */
-
-void (*foo[6][6]) (int);
-void bar (hdR)
- int hdR;
-{ }
-void xxx ()
-{
- unsigned int i, j;
- for (i = 0; i < 6; ++i)
- for (j = 0; j < 6; ++j)
- foo [i][j] = bar;
-}