repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
tls
/
diag-1.c
blob
56b570c94a5c74803232ad254ba9e661fe429a34
1
/* Valid __thread specifiers. */
2
/* { dg-require-effective-target tls } */
3
4
__thread
int
g1
;
5
extern
__thread
int
g2
;
6
static
__thread
int
g3
;
7
8
void
foo
()
9
{
10
extern
__thread
int
l1
;
11
static
__thread
int
l2
;
12
}