repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.c
/
pr26171.c
blob
eacc9a71d3e61ccabd8072a11406feb236de68eb
1
/* PR c/26171 */
2
/* { dg-do run } */
3
/* { dg-options "-fopenmp" } */
4
/* { dg-require-effective-target tls_runtime } */
5
6
int
thrv
=
0
;
7
#pragma omp threadprivate (thrv)
8
9
int
10
main
()
11
{
12
thrv
=
1
;
13
return
0
;
14
}