aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tls/data-sections-1.c
blob: c829256b01621b51f7d2e4996660acbac6e675d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do run } */
/* { dg-require-effective-target tls_runtime } */
/* { dg-options "-fdata-sections" } */
/* { dg-add-options tls } */

__thread int i = 1;

int main (void)
{
  if (i != 1)
    __builtin_abort ();

  return 0;
}