summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/tls/init-2.m
blob: 882e5f809950b3e334d58ec6518e789279b22ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Invalid initializations.  */
/* { dg-require-effective-target tls } */

extern __thread int i;
__thread int *p = &i;	/* { dg-error "initializer element is not constant" } */

extern int f();
__thread int j = f();	/* { dg-error "initializer element is not constant" } */

struct S
{
  S(); 			/* { dg-error "expected specifier-qualifier-list before 'S'" } */
};
__thread S s;		/* { dg-error "unknown type name" } */