IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ivopt_infer_2.c
blob4b7e197dd04bbf500727f19726bd2a7aa033c9c4
1 /* { dg-do compile { target {{ i?86-*-* x86_64-*-* } && lp64 } } } */
2 /* { dg-options "-O2 -m64 -fdump-tree-ivopts-details" } */
4 #ifndef TYPE
5 #define TYPE char*
6 #endif
8 extern int a[];
10 /* Can not infer loop iteration from array -- exit test can not be replaced. */
11 void foo (int i_width, TYPE dst, TYPE src1, TYPE src2)
13 TYPE dstn= dst + i_width;
14 TYPE dst0 = dst;
15 unsigned long long i = 0;
16 for( ; dst <= dstn; )
18 dst0[i] = ( src1[i] + src2[i] + 1 +a[i]) >> 1;
19 dst++;
20 i += 16;
24 /* { dg-final { scan-tree-dump-times "Replacing" 0 "ivopts"} } */
25 /* { dg-final { cleanup-tree-dump "ivopts" } } */