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
Merge C++ from gomp-20050608-branch.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
tls-2.C
blob
80275f9081c20e98be4166769c4df415b167e3a6
1
/* { dg-do compile } */
2
/* { dg-require-effective-target tls } */
3
4
extern char buf[];
5
#pragma omp threadprivate (buf) /* { dg-error "has incomplete type" } */
6
7
void
8
foo (void)
9
{
10
int i;
11
#pragma omp threadprivate (i) /* { dg-error "automatic variable" } */
12
i = 0;
13
}