aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr55964.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr55964.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr55964.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr55964.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr55964.c
deleted file mode 100644
index 361151ccf..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr55964.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-ftree-loop-distribution -funswitch-loops -w" } */
-
-int a, b;
-
-void f(void)
-{
-lbl1:
- for(b = 0; b < 1; b++)
- {
- int u = 1;
-
- if((b %= 0) * (b ? 0 : a) - 1 && (u /= 0))
- {
- int *q = &u, **k = q;
- goto lbl1;
-lbl2:
-lbl3:
- a = **k;
- goto lbl2;
- }
- }
- goto lbl3;
-}