2514265077
PR middle-end/49897 PR middle-end/49898 * omp-low.c (use_pointer_for_field): If disallowing copy-in/out in nested parallel and outer is a gimple_reg, mark it as addressable and set its bit in task_shared_vars bitmap too. * testsuite/libgomp.c/pr49897-1.c: New test. * testsuite/libgomp.c/pr49897-2.c: New test. * testsuite/libgomp.c/pr49898-1.c: New test. * testsuite/libgomp.c/pr49898-2.c: New test. From-SVN: r176945
26 lines
463 B
C
26 lines
463 B
C
/* PR middle-end/49897 */
|
|
/* { dg-do run } */
|
|
|
|
extern void abort (void);
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int i, j, x = 0, y, sum = 0;
|
|
#pragma omp parallel for reduction(+:sum) firstprivate(x) lastprivate(x, y)
|
|
for (i = 0; i < 10; i++)
|
|
{
|
|
x = i;
|
|
y = 0;
|
|
#pragma omp parallel for reduction(+:sum) firstprivate(y) lastprivate(y)
|
|
for (j = 0; j < 10; j++)
|
|
{
|
|
y = j;
|
|
sum += y;
|
|
}
|
|
}
|
|
if (x != 9 || y != 9 || sum != 450)
|
|
abort ();
|
|
return 0;
|
|
}
|