3689198db0
2011-07-27 Sebastian Pop <sebastian.pop@amd.com> PR tree-optimization/49471 * tree-ssa-loop-manip.c (canonicalize_loop_ivs): Build an unsigned iv only when the largest type is unsigned. Do not call lang_hooks.types.type_for_size. * testsuite/libgomp.graphite/force-parallel-1.c: Un-xfail. * testsuite/libgomp.graphite/force-parallel-2.c: Adjust pattern. From-SVN: r176838
31 lines
632 B
C
31 lines
632 B
C
void abort (void);
|
|
|
|
void parloop (int N)
|
|
{
|
|
int i;
|
|
int x[10000000];
|
|
|
|
for (i = 0; i < N; i++)
|
|
x[i] = i + 3;
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
if (x[i] != i + 3)
|
|
abort ();
|
|
}
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
parloop(10000000);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Check that parallel code generation part make the right answer. */
|
|
/* { dg-final { scan-tree-dump-times "1 loops carried no dependency" 2 "graphite" } } */
|
|
/* { dg-final { cleanup-tree-dump "graphite" } } */
|
|
/* { dg-final { scan-tree-dump-times "loopfn" 5 "optimized" } } */
|
|
/* { dg-final { cleanup-tree-dump "parloops" } } */
|
|
/* { dg-final { cleanup-tree-dump "optimized" } } */
|