Retro68/binutils/ld/testsuite/ld-i386/tlsdesc1a.c
2017-10-07 02:16:47 +02:00

20 lines
234 B
C

#include <stdlib.h>
#include <stdio.h>
extern int foo (void);
extern __thread int yyy;
__thread int zzz = 20;
int
main (void)
{
if (foo () != zzz)
abort ();
if (yyy != 100)
abort ();
printf ("PASS\n");
return 0;
}