2 /* { dg-options "-O2 -floop-interchange -fdump-tree-linterchange-details" } */
4 /* Copied from graphite/interchange-4.c */
13 static void __attribute__((noinline
,noclone
,noipa
))
14 foo (int N
, int M
, unsigned *res
)
19 for (i
= 0; i
< M
; i
++)
20 for (j
= 0; j
< N
; j
++)
21 sum
= u
[i
+ 3 * j
] - sum
;
44 fprintf (stderr
, "res = %d \n", res
);
53 /* { dg-final { scan-tree-dump-not "is interchanged" "linterchange"} } */