8dfdb41912
2016-01-26 Tom de Vries <tom@codesourcery.com> PR tree-optimization/69110 * tree-data-ref.c (initialize_data_dependence_relation): Handle DR_NUM_DIMENSIONS == 0. * gcc.dg/autopar/pr69110.c: New test. * testsuite/libgomp.c/pr69110.c: New test. From-SVN: r232852
27 lines
344 B
C
27 lines
344 B
C
/* { dg-do run } */
|
|
/* { dg-options "-ftree-parallelize-loops=2 -O1 -fno-tree-loop-im" } */
|
|
|
|
#define N 1000
|
|
|
|
unsigned int i = 0;
|
|
|
|
static void __attribute__((noinline, noclone))
|
|
foo (void)
|
|
{
|
|
unsigned int z;
|
|
for (z = 0; z < N; ++z)
|
|
++i;
|
|
}
|
|
|
|
extern void abort (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
foo ();
|
|
if (i != N)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|