aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/slsr-14.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/slsr-14.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/slsr-14.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/slsr-14.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/slsr-14.c
deleted file mode 100644
index 194134549..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/slsr-14.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Straight-line strength reduction control flow variation. */
-
-/* { dg-do compile } */
-/* { dg-options "-O3 -fdump-tree-optimized" } */
-
-int
-f (int n, int c, int s)
-{
- int a1, a2, x, x1, x2, x3, x4;
-
- a1 = 2 * s;
-
- if (n > 64)
- {
- x1 = c + a1;
- a2 = 4 * s;
- x2 = c + a2;
- x = x1 + x2;
- }
- else
- {
- x3 = c + a1;
- a2 = 4 * s;
- x4 = c + a2;
- x = x4 / x3;
- }
-
- return x;
-}
-
-/* { dg-final { scan-tree-dump-times " \\* " 1 "optimized" } } */
-/* { dg-final { cleanup-tree-dump "optimized" } } */