aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tls/opt-10.c
blob: 777e585569a0d41a0240cc83dff0c0d131794b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O3 -fpic" } */

/* The web pass was creating unrecognisable pic_load_dot_plus_four insns
   on ARM.  */

__thread int a_thread_local;
void *
spin (int n)
{
  int i;
  for (i = 0; i <= n; i++)
    {
      a_thread_local += i;
    }
}