1/* { dg-do compile } */
2/* { dg-skip-if "" { ! *-linux-* } { "*" } { "" } } */
3/* { dg-options "-O2" } */
4/* { dg-final { scan-assembler "jsr __m68k_read_tp" } } */
5/* { dg-final { scan-assembler "lea \\(foo@TLSLE,\%a0\\)" } } */
6
7static int __thread foo;
8
9int *
10bar (void)
11{
12  return &foo;
13}
14