ca431befaa
2015-06-15 Tom de Vries <tom@codesourcery.com> * testsuite/libgomp.c/atomic-18.c: Remove superfluous -fopenmp setting in dg-options. * testsuite/libgomp.c/atomic-3.c: Same. * testsuite/libgomp.c/debug-1.c: Same. * testsuite/libgomp.c/nqueens-1.c: Same. * testsuite/libgomp.c/pr26171.c: Same. * testsuite/libgomp.c/pr48591.c: Same. * testsuite/libgomp.c/pr64824.c: Same. * testsuite/libgomp.c/pr64868.c: Same. * testsuite/libgomp.c/pr66133.c: Same. * testsuite/libgomp.c/pr66199-1.c: Same. * testsuite/libgomp.c/pr66199-2.c: Same. * testsuite/libgomp.c/target-8.c: Same. From-SVN: r224480
15 lines
203 B
C
15 lines
203 B
C
/* PR c/26171 */
|
|
/* { dg-do run } */
|
|
/* { dg-options "-O0" } */
|
|
/* { dg-require-effective-target tls_runtime } */
|
|
|
|
int thrv = 0;
|
|
#pragma omp threadprivate (thrv)
|
|
|
|
int
|
|
main ()
|
|
{
|
|
thrv = 1;
|
|
return 0;
|
|
}
|