aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/ivopt_infer_2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/ivopt_infer_2.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/ivopt_infer_2.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/ivopt_infer_2.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/ivopt_infer_2.c
deleted file mode 100644
index 4c5a54b9a..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/tree-ssa/ivopt_infer_2.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* { dg-do compile { target {{ i?86-*-* x86_64-*-* } && lp64 } } } */
-/* { dg-options "-O2 -m64 -fdump-tree-ivopts-details" } */
-
-#ifndef TYPE
-#define TYPE char*
-#endif
-
-extern char a[];
-
-/* Can not infer loop iteration from array -- exit test can not be replaced. */
-void foo (unsigned int i_width, TYPE dst)
-{
- unsigned long long i = 0;
- unsigned long long j = 0;
- for ( ; j < i_width; )
- {
- *dst = a[i];
- dst++;
- i += 2;
- j += 1;
- }
-}
-
-/* { dg-final { scan-tree-dump-times "Replacing" 0 "ivopts"} } */
-/* { dg-final { cleanup-tree-dump "ivopts" } } */