Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / objc.dg / tls / diag-4.m
blob38a5b3abadf65e8d9a6b6791f797edc34c81aeb4
1 /* Invalid __thread specifiers.  */
2 /* { dg-require-effective-target tls } */
4 __thread typedef int g4;        /* { dg-error "'__thread' used with 'typedef'" } */
6 void foo()
8   __thread auto int l2;         /* { dg-error "'__thread' used with 'auto'" } */
9   __thread register int l4;     /* { dg-error "'__thread' used with 'register'" } */