Automatic date update in version.in
[deliverable/binutils-gdb.git] / ld / testsuite / ld-x86-64 / tlsdesc1a.c
CommitLineData
1670f9c1
L
1#include <stdlib.h>
2#include <stdio.h>
3
4extern int foo (void);
5
6extern __thread int yyy;
7
8__thread int zzz = 20;
9
10int
11main (void)
12{
13 if (foo () != zzz)
14 abort ();
15 if (yyy != 100)
16 abort ();
17 printf ("PASS\n");
18 return 0;
19}
This page took 0.028773 seconds and 4 git commands to generate.