IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ivopt_infer_1.c
blob076f5118e99382d9f6eaabeaa27135db9873f98b
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 int a[400];
10 /* Testing inferred loop iteration from array -- exit test can 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" 1 "ivopts"} } */
25 /* { dg-final { cleanup-tree-dump "ivopts" } } */