Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tls / diag-4.c
blobfed2f3accd33fcfd9e9a341b479b8ac302df760f
1 /* Invalid __thread specifiers. As diag-4.c but some cases in
2 different orders. */
3 /* { dg-require-effective-target tls } */
5 __thread typedef int g4; /* { dg-error "'__thread' used with 'typedef'" } */
7 void foo()
9 __thread auto int l2; /* { dg-error "'__thread' used with 'auto'" } */
10 __thread register int l4; /* { dg-error "'__thread' used with 'register'" } */