aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tls/init-2.C
blob: 327c309e98584e5b22a88fb63c026b8a2ab1f6bf (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 "dynamic initialization" } */

extern int f();
__thread int j = f();	/* { dg-error "dynamic initialization" } */

struct S
{
  S();
};
__thread S s;		/* { dg-error "dynamic initialization" } */