2 /* { dg-options "-O2 -fno-inline -fpredictive-commoning -fdump-tree-pcom-details" } */
4 int arr
[105] = {2, 3, 5, 7, 11, 13, 17, 19};
5 int result0
[10] = {2, 3, 5, 7, 11, 13, 17, 19};
6 int result1
[10] = {0, 3, 5, 7, 11, -5, 17, 19};
7 int result2
[10] = {0, 0, 5, 7, 11, -5, -5, 19};
8 int result3
[10] = {0, 0, 0, 7, 11, -5, -5, -5};
9 int result4
[10] = {0, 0, 0, 0, 11, -5, -5, -5, -5};
10 int result100
[105] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
11 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
13 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
14 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
15 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
16 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, -5, -5};
18 extern void abort (void);
20 void __attribute__((noinline
)) foo (int *a
, int len
)
23 for (i
= 0; i
< len
; i
++)
30 void check (int *a
, int *res
, int len
)
34 for (i
= 0; i
< len
; i
++)
42 check (arr
, result0
, 10);
45 check (arr
, result1
, 10);
48 check (arr
, result2
, 10);
51 check (arr
, result3
, 10);
54 check (arr
, result4
, 10);
57 check (arr
, result100
, 105);