repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
obj-c++.dg
/
tls
/
static-1a.mm
blob
a19aba290e9da01506faf25d1e6ba7603fcccf07
1
// { dg-skip-if "Additional Source File" *-*-* }
2
// This is the additional source file for test static-1.mm
3
4
struct A
5
{
6
static __thread int i;
7
};
8
9
int
10
test ()
11
{
12
if (A::i != 8)
13
return 1;
14
15
A::i = 17;
16
return 0;
17
}