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