]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/tls/diag-4.c
Makefile.in (libgcc-support, [...]): Add emutls.c.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tls / diag-4.c
CommitLineData
9a26d6ee
JM
1/* Invalid __thread specifiers. As diag-4.c but some cases in
2 different orders. */
3
4__thread typedef int g4; /* { dg-error "'__thread' used with 'typedef'" } */
5
6void foo()
7{
8 __thread auto int l2; /* { dg-error "'__thread' used with 'auto'" } */
9 __thread register int l4; /* { dg-error "'__thread' used with 'register'" } */
10}