(root)/
binutils-2.41/
ld/
testsuite/
ld-elf/
pr22263-1b.c
       1  extern __thread int *foo;
       2   
       3  static int x;
       4  
       5  extern void bar (void);
       6  
       7  int
       8  _start ()
       9  {
      10    foo = &x;
      11    return 0;
      12  }