aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/var-expand1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/var-expand1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/var-expand1.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/var-expand1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/var-expand1.c
deleted file mode 100644
index a784ea1a0..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/var-expand1.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* { dg-do compile } */
-/* We don't (and don't want to) perform this optimisation on soft-float
- targets, where each addition is a library call. */
-/* { dg-require-effective-target hard_float } */
-/* { dg-options "-O2 -funroll-loops --fast-math -fvariable-expansion-in-unroller -fdump-rtl-loop2_unroll" } */
-
-extern void abort (void);
-
-float array[30] = { 1,2,3,4,5,6,7,8,9,10 };
-
-int foo (int n)
-{
- unsigned i;
- float accum = 1.0;
-
- for (i = 0; i < n; i++)
- accum += array[i];
-
- return accum;
-}
-
-int main (void)
-{
- return foo (10);
-}
-
-/* { dg-final { scan-rtl-dump "Expanding Accumulator" "loop2_unroll" } } */
-/* { dg-final { cleanup-rtl-dump "loop*" } } */