blob: c71f66fb8f5d9df3475da9b55570d84d18c780a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Report invalid extern and __thread combinations. */
/* { dg-require-effective-target tls } */
extern int j; /* { dg-message "previous declaration of 'j' was here" } */
__thread int j; /* { dg-error "follows non-thread-local" } */
extern __thread int i; /* { dg-message "previous declaration of 'i' was here" } */
int i; /* { dg-error "follows thread-local" } */
extern __thread int k; /* This is fine. */
__thread int k;
|