aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/tls/init-2.C
blob: c9f646d3a1d93db2f4f1dbd71ea5304131be0fb5 (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 "dynamically initialized" } */

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

struct S
{
  S();
};
__thread S s;		/* { dg-error "" } two errors here */