]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/tls/diag-1.c
gcc/
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tls / diag-1.c
CommitLineData
7ce3d0df 1/* Valid __thread specifiers. */
2
3__thread int g1;
4extern __thread int g2;
5static __thread int g3;
6
7void foo()
8{
9 extern __thread int l1;
10 static __thread int l2;
11}