aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr39132.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr39132.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr39132.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr39132.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr39132.c
deleted file mode 100644
index f6e2907e0..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr39132.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/* { dg-do run } */
-/* { dg-options "-ftree-loop-distribution" } */
-
-extern void abort(void);
-
-struct epic_private
-{
- unsigned int *rx_ring;
- unsigned int rx_skbuff[5];
-};
-
-int
-main (void)
-{
- struct epic_private ep;
- unsigned int rx_ring[5];
- int i;
-
- ep.rx_skbuff[0] = 5;
-
- ep.rx_ring = rx_ring;
-
- for (i = 0; i < 5; i++)
- {
- ep.rx_ring[i] = i;
- ep.rx_skbuff[i] = 0;
- }
-
- if (ep.rx_skbuff[0] != 0)
- abort ();
-
- return 0;
-}
-