1  /* { dg-do compile } */
       2  /* { dg-skip-if "" { ! *-linux-* } } */
       3  /* { dg-options "-O2 -fpic" } */
       4  /* { dg-final { scan-assembler "foo@TLSGD\\(\%a5\\)" } } */
       5  /* { dg-final { scan-assembler "bsr.l __tls_get_addr@PLTPC" } } */
       6  
       7  extern int __thread foo;
       8  
       9  int *
      10  bar (void)
      11  {
      12    return &foo;
      13  }