summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/tlsle_1.x
blob: d92281b6de228c3d0d99db2527652d8f46de0b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void abort (void);

__thread int t0 = 0x10;
__thread int t1 = 0x10;

int
main (int argc, char **argv)
{
  if (t0 != t1)
    abort ();

  return  0;
}